Skip to content

Commit

Permalink
spotbugs is run when packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
miguno committed May 6, 2024
1 parent ae50bf9 commit 998d03e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -164,11 +164,20 @@
<executions>
<!-- Run `spotbugs:check` when running `./mvnw verify`. -->
<execution>
<id>verify-runs-spotbugs</id>
<goals>
<goal>check</goal>
</goals>
<phase>verify</phase>
</execution>
<!-- Run `spotbugs:check` when running `./mvnw package`. -->
<execution>
<id>package-runs-spotbugs</id>
<goals>
<goal>check</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
</plugin>
</plugins>
Expand Down

0 comments on commit 998d03e

Please sign in to comment.