diff --git a/pom.xml b/pom.xml index d5903bd9c22cd427782783f77fbe8dae5687fc8f..4d63baf7cbae6dddaa565480e86dc85b55ce149d 100644 --- a/pom.xml +++ b/pom.xml @@ -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>