Skip to content

Commit d7f96c7

Browse files
Renaming folders to sd-app and sd-ft
1 parent b466eda commit d7f96c7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+18
-18
lines changed

.github/workflows/service-discovery-ci.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ on:
44
push:
55
branches: [ main ]
66
paths:
7-
- service-discovery-app/**
8-
- service-discovery-ft/**
7+
- sd-app/**
8+
- sd-ft/**
99
- gradle/libs.versions.toml
1010
pull_request:
1111
branches: [ main ]
1212
paths:
13-
- service-discovery-app/**
14-
- service-discovery-ft/**
13+
- sd-app/**
14+
- sd-ft/**
1515
- gradle/libs.versions.toml
1616
workflow_dispatch:
1717
inputs:
@@ -36,20 +36,20 @@ jobs:
3636
java-version: '17'
3737
distribution: 'zulu'
3838
- name: Build + unit tests
39-
run: ./gradlew --no-daemon :service-discovery-app:build
39+
run: ./gradlew --no-daemon :sd-app:build
4040

4141
- name: Start Spring Boot app
42-
run: java -jar service-discovery-app/build/libs/service-discovery.jar &
42+
run: java -jar sd-app/build/libs/service-discovery.jar &
4343

4444
- name: Wait for Spring Boot to start
4545
run: |
4646
echo "Waiting for Spring Boot to start..."
4747
sleep 5
4848
4949
- name: Run functional tests
50-
run: ./gradlew --no-daemon :service-discovery-ft:cucumber
50+
run: ./gradlew --no-daemon :sd-ft:cucumber
5151

5252
- name: Stop Spring Boot app
5353
run: |
5454
echo "Stopping Spring Boot app..."
55-
pkill -f 'java -jar service-discovery-app/build/libs/service-discovery.jar'
55+
pkill -f 'java -jar sd-app/build/libs/service-discovery.jar'

.github/workflows/sonarcloud-analyses.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ on:
44
push:
55
branches: [ main ]
66
paths:
7-
- service-discovery-app/**
8-
- service-discovery-ft/**
7+
- sd-app/**
8+
- sd-ft/**
99
pull_request:
1010
branches: [ main ]
1111
paths:
12-
- service-discovery-app/**
13-
- service-discovery-ft/**
12+
- sd-app/**
13+
- sd-ft/**
1414

1515
jobs:
1616
sonar-analyses:

README.md

+3-3
File renamed without changes.
File renamed without changes.
File renamed without changes.

service-discovery-ft/src/test/resources/features/actuator.feature sd-ft/src/test/resources/features/actuator.feature

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Feature: Checking Service Discovery actuator endpoints return expected outputs
2929
When the request is sent
3030
Then the response status code should be 200
3131
And it should return build information containing the following keys and values:
32-
| artifact | service-discovery-app |
32+
| artifact | sd-app |
3333
| name | service-discovery |
3434
| group | com.generoso |
3535
And the response body contains:

settings.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
rootProject.name = 'service-discovery'
2-
include 'service-discovery-app'
3-
include 'service-discovery-ft'
2+
include 'sd-app'
3+
include 'sd-ft'
44

0 commit comments

Comments
 (0)