Skip to content

Commit b713447

Browse files
committed
pom.xml: add dependency-check-maven plugin.
It can be running by executing mvn org.owasp:dependency-check-maven:check command. The report will created at target/dependency-check-report.html Addressed to #799
1 parent bbe8edc commit b713447

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

pom.xml

+11
Original file line numberDiff line numberDiff line change
@@ -546,6 +546,7 @@
546546
<mysql.version>5.1.45</mysql.version>
547547

548548
<native2ascii.plugin.version>1.0-beta-1</native2ascii.plugin.version>
549+
<owasp-plugin.version>3.0.2</owasp-plugin.version>
549550
<pmd.plugin.version>3.8</pmd.plugin.version>
550551
<resources.plugin.version>3.0.2</resources.plugin.version>
551552
<robotframework-plugin.version>1.4.7</robotframework-plugin.version>
@@ -959,6 +960,16 @@
959960
</configuration>
960961
</plugin>
961962

963+
<!--
964+
Usage: mvn org.owasp:dependency-check-maven:check
965+
(analyze dependencies for vulnerabilities and creates report in target/dependency-check-report.html)
966+
-->
967+
<plugin>
968+
<groupId>org.owasp</groupId>
969+
<artifactId>dependency-check-maven</artifactId>
970+
<version>${owasp-plugin.version}</version>
971+
</plugin>
972+
962973
<!--
963974
Usage:
964975
mvn robotframework:run (runs tests and generates report in target/robotframework-reports/report.html)

0 commit comments

Comments
 (0)