Skip to content
This repository has been archived by the owner on Jun 18, 2020. It is now read-only.

Releases: sonatype-nexus-community/ossindex-gradle-plugin

Release 0.4.11

11 Apr 18:13
Compare
Choose a tag to compare

File locking fixes for windows.

Release 0.4.10

26 Mar 04:23
Compare
Choose a tag to compare

Windows workaround for file permissions.

Release 0.4.9

24 Mar 17:38
Compare
Choose a tag to compare

A variety of bug fixes and improvements.

Release 0.4.6-beta

20 Jan 19:29
9a728f5
Compare
Choose a tag to compare

Added file locking to support --parallel builds

Release 0.4.4-beta

03 Oct 04:11
Compare
Choose a tag to compare
Release 0.4.4-beta Pre-release
Pre-release

A variety of fixes, particularly related to reporting and exclusions.

Release 0.4.0 Beta 3

24 Sep 04:38
Compare
Choose a tag to compare

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

20 Sep 18:49
Compare
Choose a tag to compare
  • Fixed a couple of bugs in report publishing.
  • Take older features out of "beta"

Release 0.4.0-beta1

12 Aug 18:46
Compare
Choose a tag to compare
Release 0.4.0-beta1 Pre-release
Pre-release
  • 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 {
...
}

...