Skip to content
Snippets Groups Projects
Commit dfa7e262 authored by Robert Goldmann's avatar Robert Goldmann
Browse files

#649 - added dependency for dependency check

parent 5dafe9b0
No related branches found
No related tags found
No related merge requests found
Pipeline #6079 passed
......@@ -75,6 +75,7 @@
<joda-time.version>2.10.12</joda-time.version>
<vanilla-picker.version>2.12.1</vanilla-picker.version>
<jacoco-maven-plugin.version>0.8.7</jacoco-maven-plugin.version>
<dependency-check-maven.version>6.5.3</dependency-check-maven.version>
<app.versionDate>${maven.build.timestamp}</app.versionDate>
<maven.build.timestamp.format>dd.MM.yy</maven.build.timestamp.format>
......@@ -389,6 +390,31 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>${dependency-check-maven.version}</version>
<inherited>false</inherited>
<configuration>
<skip>false</skip>
<cveValidForHours>48</cveValidForHours>
<assemblyAnalyzerEnabled>false</assemblyAnalyzerEnabled>
<failOnError>false</failOnError>
<formats>
<format>HTML</format>
<format>XML</format>
</formats>
</configuration>
<executions>
<execution>
<goals>
<goal>aggregate</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment