You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pdfbox.apache.org by ti...@apache.org on 2017/07/11 16:19:58 UTC

svn commit: r1801633 - /pdfbox/branches/1.8/parent/pom.xml

Author: tilman
Date: Tue Jul 11 16:19:58 2017
New Revision: 1801633

URL: http://svn.apache.org/viewvc?rev=1801633&view=rev
Log:
PDFBOX-3865: add OWASP dependency-check to build

Modified:
    pdfbox/branches/1.8/parent/pom.xml

Modified: pdfbox/branches/1.8/parent/pom.xml
URL: http://svn.apache.org/viewvc/pdfbox/branches/1.8/parent/pom.xml?rev=1801633&r1=1801632&r2=1801633&view=diff
==============================================================================
--- pdfbox/branches/1.8/parent/pom.xml (original)
+++ pdfbox/branches/1.8/parent/pom.xml Tue Jul 11 16:19:58 2017
@@ -70,6 +70,21 @@
               </execution>
             </executions>
           </plugin>
+          <plugin>
+              <groupId>org.owasp</groupId>
+              <artifactId>dependency-check-maven</artifactId>
+              <version>2.0.0</version>
+              <configuration>
+                  <failBuildOnAnyVulnerability>true</failBuildOnAnyVulnerability>
+              </configuration>
+              <executions>
+                  <execution>
+                      <goals>
+                          <goal>check</goal>
+                      </goals>
+                  </execution>
+              </executions>
+          </plugin>
         </plugins>
       </build>
     </profile>