This repository has been archived by the owner on Jun 18, 2020. It is now read-only.
Releases: sonatype-nexus-community/ossindex-gradle-plugin
Releases · sonatype-nexus-community/ossindex-gradle-plugin
Release 0.4.11
Release 0.4.10
Windows workaround for file permissions.
Release 0.4.9
A variety of bug fixes and improvements.
Release 0.4.6-beta
Added file locking to support --parallel builds
Release 0.4.4-beta
A variety of fixes, particularly related to reporting and exclusions.
Release 0.4.0 Beta 3
The first official beta release for an upgrade which uses the OSS Index v3 API. This version has the following benefits:
- Many more vulnerabilities
- Actively maintained database
- The v2 database is deprecated and will be shut down eventually
View the readme for instructions: https://github.com/OSSIndex/ossindex-gradle-plugin/blob/master/README.md
Release 0.3.21
- Fixed a couple of bugs in report publishing.
- Take older features out of "beta"
Release 0.4.0-beta1
- Using the OSS Index v3 API
- Results caching
- API authentication credentials
The attached jar is a "shadow" jar which is intended for testing. To use this jar you need to update your test system's build.gradle file in the following way (assuming the shadow jar is in the /tmp/
folder:
Add a new "flatDir" repository and dependency, then configure as-per normal.
buildscript {
repositories {
...
flatDir {
dirs '/tmp/'
}
}
dependencies {
...
classpath "net.ossindex:ossindex-gradle-plugin:0.4.0-all"
}
}
...
apply plugin: "net.ossindex.audit"
...
audit {
...
}
...