#87 - Set default build goal to verify.

Still configure build scripts to use it explicitly.
This commit is contained in:
Oliver Drotbohm
2022-09-12 17:51:03 +02:00
parent 36435517a3
commit eac157189c
3 changed files with 5 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ jobs:
cache: 'maven'
- name: Build with Maven
run: ./mvnw -B
run: ./mvnw -B clean verify
- name: Deploy to Artifactory
env:

View File

@@ -22,7 +22,7 @@ jobs:
cache: 'maven'
- name: Build with Maven
run: ./mvnw -B
run: ./mvnw -B clean verify
- name: Deploy to Artifactory
env:

View File

@@ -245,6 +245,9 @@
</dependencies>
<build>
<defaultGoal>verify</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>