Author: jleroux
Date: Fri Jul 29 12:49:19 2016
New Revision: 1754508
URL:
http://svn.apache.org/viewvc?rev=1754508&view=revLog:
Adds the owasp dependencycheck plugin for "Copy external jars in OFBiz $buildDir/externalJars for (at least) dependency check" -
https://issues.apache.org/jira/browse/OFBIZ-7930#This is so far a much better solution than what I proposed. We will have though to see how to add entries in the equivalent of the suppress.xml file.
Modified:
ofbiz/trunk/build.gradle
Modified: ofbiz/trunk/build.gradle
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/build.gradle?rev=1754508&r1=1754507&r2=1754508&view=diff==============================================================================
--- ofbiz/trunk/build.gradle (original)
+++ ofbiz/trunk/build.gradle Fri Jul 29 12:49:19 2016
@@ -22,8 +22,13 @@ import org.apache.tools.ant.filters.Repl
* Project setup
* ======================================================== */
+plugins {
+ id "org.owasp.dependencycheck" version "1.4.0"
+}
+
apply plugin: 'java'
apply plugin: 'eclipse'
+apply plugin: "org.owasp.dependencycheck"
apply from: 'common.gradle'