Skip to content

Commit

Permalink
TEST_MAVEN_CONFIG
Browse files Browse the repository at this point in the history
  • Loading branch information
pathob committed Sep 28, 2023
1 parent de410a7 commit 43f4a91
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ jobs:
restore-keys: confapi-plugin

- name: Download Dependencies
run: ./mvnw dependency:go-offline -U -B
run: ./mvnw dependency:go-offline -U

- name: Build with Maven
run: ./mvnw package -DskipUnitTests -B
run: ./mvnw package -DskipUnitTests

unit-tests:
needs: package
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
restore-keys: confapi-plugin

- name: Run Unit Tests and analyze on SonarCloud
run: ./mvnw test sonar:sonar -B
run: ./mvnw test sonar:sonar

integration-tests:
needs: package
Expand All @@ -85,7 +85,7 @@ jobs:
restore-keys: confapi-plugin

- name: Run Integration Tests
run: ./mvnw integration-test -DskipUnitTests -B
run: ./mvnw integration-test -DskipUnitTests

deploy:
needs: [unit-tests, integration-tests]
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
run: gpg --no-tty --batch --import .github/workflows/sign.asc

- name: Deploy to Maven Central
run: export GPG_TTY=$(tty) && ./mvnw -s .github/workflows/settings.xml -DskipTests deploy -B
run: export GPG_TTY=$(tty) && ./mvnw -s .github/workflows/settings.xml -DskipTests deploy

apcc:
needs: package
Expand Down
1 change: 1 addition & 0 deletions .mvn/maven.config
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-B --settings ./.mvn/settings.xml
File renamed without changes.

0 comments on commit 43f4a91

Please sign in to comment.