diff --git a/dependency-check-gradle/README.md b/dependency-check-gradle/README.md index 6c931ecf1..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,11 +24,11 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.thoughtworks.tools:dependency-check:0.0.7' + classpath 'com.thoughtworks.tools:dependency-check:0.0.8' } } -apply plugin: 'dependency.check' +apply plugin: 'dependency-check' ``` ### Step 2, Run gradle task @@ -38,7 +36,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. @@ -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" } } diff --git a/dependency-check-gradle/build.gradle b/dependency-check-gradle/build.gradle index aaaf3813c..1bf6714bc 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,11 +76,11 @@ task integTest(type: Test) { } group = 'com.thoughtworks.tools' -version = '0.0.7' +version = '0.0.8' targetCompatibility = 1.7 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