[Project] Added dependency-check in mvn profile security

This commit is contained in:
Robert von Burg 2021-12-22 12:40:24 +01:00
parent 1b64506eb0
commit 5ca44157f6
1 changed files with 29 additions and 0 deletions

29
pom.xml
View File

@ -122,6 +122,7 @@
<versions-maven-plugin.version>2.8.1</versions-maven-plugin.version>
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
<dependency-check-maven-plugin.version>6.5.1</dependency-check-maven-plugin.version>
<maven-site-plugin.version>3.9.1</maven-site-plugin.version>
<maven-eclipse-plugin.version>2.10</maven-eclipse-plugin.version>
<maven-jar-plugin.version>3.2.0</maven-jar-plugin.version>
@ -468,6 +469,23 @@
</executions>
</plugin>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>${dependency-check-maven-plugin.version}</version>
<configuration>
<failBuildOnCVSS>8</failBuildOnCVSS>
<yarnAuditAnalyzerEnabled>false</yarnAuditAnalyzerEnabled>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
@ -695,6 +713,17 @@
</distributionManagement>
<profiles>
<profile>
<id>security</id>
<build>
<plugins>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>source</id>
<build>