Skip to content

Instantly share code, notes, and snippets.

@erikmd
Created October 18, 2017 22:38
Show Gist options
  • Save erikmd/7e89048657aded4cd9bcf744d7f6b775 to your computer and use it in GitHub Desktop.
Save erikmd/7e89048657aded4cd9bcf744d7f6b775 to your computer and use it in GitHub Desktop.
Fragment of `pom.xml` file with typical plugins
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.17</version>
<reportSets>
<reportSet>
<reports>
<report>checkstyle</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.6</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.3</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>2.5</version>
</plugin>
</plugins>
</reporting>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment