mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-20 00:04:27 +01:00
Move reporting plugin version numbers into properties
Former-commit-id: a3cbc3ba8647dc2118e6c35f2819c87eb2f98e6f
This commit is contained in:
@@ -39,6 +39,15 @@ Copyright (c) 2014 - Jeremy Long. All Rights Reserved.
|
|||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
<reporting.findbugs-plugin.version>2.5.3</reporting.findbugs-plugin.version>
|
||||||
|
<reporting.checkstyle-plugin.version>2.11</reporting.checkstyle-plugin.version>
|
||||||
|
<reporting.cobertura-plugin.version>2.6</reporting.cobertura-plugin.version>
|
||||||
|
<reporting.javadoc-plugin.version>2.9.1</reporting.javadoc-plugin.version>
|
||||||
|
<reporting.jxr-plugin.version>2.4</reporting.jxr-plugin.version>
|
||||||
|
<reporting.pmd-plugin.version>3.0.1</reporting.pmd-plugin.version>
|
||||||
|
<reporting.surefire-report-plugin.version>2.16</reporting.surefire-report-plugin.version>
|
||||||
|
<reporting.taglist-plugin.version>2.4</reporting.taglist-plugin.version>
|
||||||
|
<reporting.versions-plugin.version>2.1</reporting.versions-plugin.version>
|
||||||
</properties>
|
</properties>
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
@@ -104,7 +113,7 @@ Copyright (c) 2014 - Jeremy Long. All Rights Reserved.
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-javadoc-plugin</artifactId>
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
<version>2.9.1</version>
|
<version>${reporting.javadoc-plugin.version}</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<failOnError>false</failOnError>
|
<failOnError>false</failOnError>
|
||||||
<bottom>Copyright© 2012-15 Jeremy Long. All Rights Reserved.</bottom>
|
<bottom>Copyright© 2012-15 Jeremy Long. All Rights Reserved.</bottom>
|
||||||
@@ -121,7 +130,7 @@ Copyright (c) 2014 - Jeremy Long. All Rights Reserved.
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>versions-maven-plugin</artifactId>
|
<artifactId>versions-maven-plugin</artifactId>
|
||||||
<version>2.1</version>
|
<version>${reporting.versions-plugin.version}</version>
|
||||||
<reportSets>
|
<reportSets>
|
||||||
<reportSet>
|
<reportSet>
|
||||||
<reports>
|
<reports>
|
||||||
@@ -134,17 +143,17 @@ Copyright (c) 2014 - Jeremy Long. All Rights Reserved.
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-jxr-plugin</artifactId>
|
<artifactId>maven-jxr-plugin</artifactId>
|
||||||
<version>2.4</version>
|
<version>${reporting.jxr-plugin.version}</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>cobertura-maven-plugin</artifactId>
|
<artifactId>cobertura-maven-plugin</artifactId>
|
||||||
<version>2.6</version>
|
<version>${reporting.cobertura-plugin.version}</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-surefire-report-plugin</artifactId>
|
<artifactId>maven-surefire-report-plugin</artifactId>
|
||||||
<version>2.16</version>
|
<version>${reporting.surefire-report-plugin.version}</version>
|
||||||
<reportSets>
|
<reportSets>
|
||||||
<reportSet>
|
<reportSet>
|
||||||
<reports>
|
<reports>
|
||||||
@@ -156,7 +165,7 @@ Copyright (c) 2014 - Jeremy Long. All Rights Reserved.
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>taglist-maven-plugin</artifactId>
|
<artifactId>taglist-maven-plugin</artifactId>
|
||||||
<version>2.4</version>
|
<version>${reporting.taglist-plugin.version}</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<tagListOptions>
|
<tagListOptions>
|
||||||
<tagClasses>
|
<tagClasses>
|
||||||
@@ -180,7 +189,7 @@ Copyright (c) 2014 - Jeremy Long. All Rights Reserved.
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-checkstyle-plugin</artifactId>
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||||
<version>2.11</version>
|
<version>${reporting.checkstyle-plugin.version}</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<enableRulesSummary>false</enableRulesSummary>
|
<enableRulesSummary>false</enableRulesSummary>
|
||||||
<enableFilesSummary>false</enableFilesSummary>
|
<enableFilesSummary>false</enableFilesSummary>
|
||||||
@@ -193,7 +202,7 @@ Copyright (c) 2014 - Jeremy Long. All Rights Reserved.
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-pmd-plugin</artifactId>
|
<artifactId>maven-pmd-plugin</artifactId>
|
||||||
<version>3.0.1</version>
|
<version>${reporting.pmd-plugin.version}</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<targetJdk>1.6</targetJdk>
|
<targetJdk>1.6</targetJdk>
|
||||||
<linkXref>true</linkXref>
|
<linkXref>true</linkXref>
|
||||||
@@ -212,7 +221,7 @@ Copyright (c) 2014 - Jeremy Long. All Rights Reserved.
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>findbugs-maven-plugin</artifactId>
|
<artifactId>findbugs-maven-plugin</artifactId>
|
||||||
<version>2.5.3</version>
|
<version>${reporting.findbugs-plugin.version}</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<onlyAnalyze>org.owasp.dependencycheck.utils.*</onlyAnalyze>
|
<onlyAnalyze>org.owasp.dependencycheck.utils.*</onlyAnalyze>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
|||||||
Reference in New Issue
Block a user