From 815d60eca298854a61e476282ea5b6b6eb132929 Mon Sep 17 00:00:00 2001 From: ma wei Date: Thu, 17 Sep 2015 17:15:42 +0800 Subject: [PATCH 1/4] update README, fix typo which would lead to unable to apply this plugin --- dependency-check-gradle/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dependency-check-gradle/README.md b/dependency-check-gradle/README.md index 6c931ecf1..3e29675f7 100644 --- a/dependency-check-gradle/README.md +++ b/dependency-check-gradle/README.md @@ -30,7 +30,7 @@ buildscript { } } -apply plugin: 'dependency.check' +apply plugin: 'dependency-check' ``` ### Step 2, Run gradle task From 1f37a5ff8f1202e8aeeb05a4001f57e2ad3d4a48 Mon Sep 17 00:00:00 2001 From: ma wei Date: Thu, 17 Sep 2015 17:17:41 +0800 Subject: [PATCH 2/4] update the example command in README file --- dependency-check-gradle/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dependency-check-gradle/README.md b/dependency-check-gradle/README.md index 3e29675f7..d22f1371a 100644 --- a/dependency-check-gradle/README.md +++ b/dependency-check-gradle/README.md @@ -38,7 +38,7 @@ apply plugin: 'dependency-check' Once gradle plugin applied, run following gradle task to check dependencies: ``` -gradle dependencyCheck +gradle dependencyCheck --info ``` The reports will be generated automatically under `./reports` folder. From 07e868e6f69a1cce527c3bf4f77948df4fc590e8 Mon Sep 17 00:00:00 2001 From: ma wei Date: Mon, 21 Sep 2015 09:24:58 +0800 Subject: [PATCH 3/4] upgrade dependency check core version to 1.3.1 --- dependency-check-gradle/build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dependency-check-gradle/build.gradle b/dependency-check-gradle/build.gradle index 5f14911ed..a4fd64368 100644 --- a/dependency-check-gradle/build.gradle +++ b/dependency-check-gradle/build.gradle @@ -49,8 +49,8 @@ dependencies { compile( localGroovy(), gradleApi(), - 'org.owasp:dependency-check-core:1.3.0', - 'org.owasp:dependency-check-utils:1.3.0' + 'org.owasp:dependency-check-core:1.3.1', + 'org.owasp:dependency-check-utils:1.3.1' ) testCompile ('com.netflix.nebula:nebula-test:2.2.2'){ @@ -76,9 +76,9 @@ task integTest(type: Test) { } group = 'com.thoughtworks.tools' -version = '0.0.7' +version = '0.0.8' apply from: 'conf/publish/local.gradle' //apply from: 'conf/publish/maven.gradle' -apply from: 'conf/publish/gradlePluginsPortal.gradle' +//apply from: 'conf/publish/gradlePluginsPortal.gradle' //apply from: 'conf/publish/bintray.gradle' // according to the documentation of plugindev, this line has to be placed and the very end of the build file \ No newline at end of file From ad81bbc761fcbba9a2ffb9c6734b9859ea24756e Mon Sep 17 00:00:00 2001 From: ma wei Date: Mon, 21 Sep 2015 09:26:25 +0800 Subject: [PATCH 4/4] modify README --- dependency-check-gradle/README.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/dependency-check-gradle/README.md b/dependency-check-gradle/README.md index d22f1371a..a1d37491e 100644 --- a/dependency-check-gradle/README.md +++ b/dependency-check-gradle/README.md @@ -10,9 +10,7 @@ Dependency-Check is a utility that attempts to detect publicly disclosed vulnera ========= ## What's New -Current latest version is `0.0.7` -- Implement nested configuration for proxy settings -- Bug fix: Remove duplicated configuration items +Current latest version is `0.0.8` ## Usage @@ -26,7 +24,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.thoughtworks.tools:dependency-check:0.0.7' + classpath 'com.thoughtworks.tools:dependency-check:0.0.8' } } @@ -93,7 +91,7 @@ buildscript { mavenCentral() } dependencies { - classpath "gradle.plugin.com.tools.security:dependency-check:0.0.7" + classpath "gradle.plugin.com.tools.security:dependency-check:0.0.8" } } @@ -110,7 +108,7 @@ buildscript { mavenCentral() } dependencies { - classpath "gradle.plugin.com.tools.security:dependency-check:0.0.7" + classpath "gradle.plugin.com.tools.security:dependency-check:0.0.8" } }