Skip to content

Commit

Permalink
Dependency check maven plugin moved to reporting section and upgraded…
Browse files Browse the repository at this point in the history
… to latest plugin version

#CTCTOWALTZ-1388
#4243
  • Loading branch information
mitranc committed Jul 30, 2019
1 parent 4804509 commit 408bf15
Showing 1 changed file with 23 additions and 9 deletions.
32 changes: 23 additions & 9 deletions pom.xml
Expand Up @@ -241,6 +241,16 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.7.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.0.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down Expand Up @@ -268,22 +278,26 @@
<doUpdate>false</doUpdate>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>1.4.5</version>
<configuration>
<cveValidForHours>48</cveValidForHours>
<!--<failBuildOnCVSS>7</failBuildOnCVSS>-->
<!--mavenSettingsProxyId>artifactory</mavenSettingsProxyId-->
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<reportSets>
<reportSet>
<reports>
<report>aggregate</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</build>
</reporting>
</project>

0 comments on commit 408bf15

Please sign in to comment.