You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2016/02/18 13:23:44 UTC

svn commit: r1731054 - /myfaces/tobago/trunk/pom.xml

Author: lofwyr
Date: Thu Feb 18 12:23:44 2016
New Revision: 1731054

URL: http://svn.apache.org/viewvc?rev=1731054&view=rev
Log:
TOBAGO-1532: Adding CVE check of OWASP to the release process

Modified:
    myfaces/tobago/trunk/pom.xml

Modified: myfaces/tobago/trunk/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/pom.xml?rev=1731054&r1=1731053&r2=1731054&view=diff
==============================================================================
--- myfaces/tobago/trunk/pom.xml (original)
+++ myfaces/tobago/trunk/pom.xml Thu Feb 18 12:23:44 2016
@@ -1006,6 +1006,11 @@
           <artifactId>maven-processor-plugin</artifactId>
           <version>2.2.4</version>
         </plugin>
+        <plugin>
+          <groupId>org.owasp</groupId>
+          <artifactId>dependency-check-maven</artifactId>
+          <version>1.3.4</version>
+        </plugin>
       </plugins>
     </pluginManagement>
   </build>
@@ -1117,6 +1122,18 @@
                 <goals>
                   <goal>check</goal>
                 </goals>
+              </execution>
+            </executions>
+          </plugin>
+
+          <plugin>
+            <groupId>org.owasp</groupId>
+            <artifactId>dependency-check-maven</artifactId>
+            <executions>
+              <execution>
+                <goals>
+                  <goal>check</goal>
+                </goals>
               </execution>
             </executions>
           </plugin>