Skip to content

Commit 5ff21db

Browse files
Display the full stack trace of the errors on maven failed build
1 parent 1b638aa commit 5ff21db

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/cross-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ jobs:
2424
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
2525
restore-keys: ${{ runner.os }}-maven
2626
- name: Test
27-
run: ./mvnw -V --no-transfer-progress clean verify javadoc:javadoc
27+
run: ./mvnw -V --no-transfer-progress -e clean verify javadoc:javadoc

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
2525
restore-keys: ${{ runner.os }}-maven
2626
- name: Test
27-
run: ./mvnw -V --no-transfer-progress clean verify javadoc:javadoc
27+
run: ./mvnw -V --no-transfer-progress -e clean verify javadoc:javadoc
2828

2929
sonar:
3030
name: Sonar code analysis
@@ -44,7 +44,7 @@ jobs:
4444
restore-keys: ${{ runner.os }}-maven
4545
- name: Test with Sonar
4646
run: >
47-
./mvnw -V --no-transfer-progress clean verify javadoc:javadoc
47+
./mvnw -V --no-transfer-progress -e clean verify javadoc:javadoc
4848
org.sonarsource.scanner.maven:sonar-maven-plugin:3.7.0.1746:sonar
4949
-Dsonar.host.url=https://sonarcloud.io
5050
-Dsonar.organization=assertj

0 commit comments

Comments
 (0)