version 1.3.0

This commit is contained in:
Jeremy Long
2015-08-04 21:19:19 -04:00
parent 5d6ad8bc6c
commit d529e88242
9 changed files with 60 additions and 36 deletions

View File

@@ -1,28 +0,0 @@
Gradle Integration
==================
While a full Gradle Plugin is planned, the following gradle task can be used to
run dependency-check:
```
configurations {
depCheck
}
dependencies {
depCheck "org.owasp:dependency-check-ant:${project.version}"
}
task checkDeps << {
ant.taskdef(name: 'checkDepsTask',
classname: 'org.owasp.dependencycheck.taskdefs.DependencyCheckTask',
classpath: configurations.depCheck.asPath)
ant.checkDepsTask() {
path {
pathelement(path: sourceSets.main.runtimeClasspath.asPath)
}
}
}
```
The above task definition was provided by [Nikita Koksharov](https://github.com/mrniko).