Skip to content

Instantly share code, notes, and snippets.

@bdemers
Created August 6, 2024 16:00
Show Gist options
  • Save bdemers/61f3bb539273f9885a8adca7a11f3e72 to your computer and use it in GitHub Desktop.
Save bdemers/61f3bb539273f9885a8adca7a11f3e72 to your computer and use it in GitHub Desktop.
<profiles>
<profile>
<id>ci</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<executions>
<execution>
<id>scan</id>
<phase>verify</phase>
<goals><goal>check</goal></goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<executions>
<execution>
<id>scan</id>
<phase>verify</phase>
<goals><goal>check</goal></goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment