Search Gradle plugins

se.solrike.otsswinfo

Gradle plugin to generate version and license reports for your Java (multi)project. The plugin scans all the dependencies and the transitive dependencies (off the shelf software, OTS-SW) and lists the version and license for each dependency. The plugin can also generate an version up-to-date report for the dependencies. Min Gradle version 7.0.

https://github.com/Lucas3oo/ots-sw-info-gradle-plugin

Sources: https://github.com/Lucas3oo/ots-sw-info-gradle-plugin

Version 1.0.0-beta.10 (latest)

Created 20 March 2022.


Gradle plugin to generate version and license reports for your Java (multi)project.
The plugin scans all the dependencies and the transitive dependencies (off the shelf software, OTS-SW)
and lists the version and license for each dependency.

The plugin creates a software bill-of-meterial report in CSV format.

The plugin can also generate an version up-to-date report for the dependencies.

The plugin can also check the license on each dependency if they are allowed according to a specified policy.

Min Gradle version 7.0.

Using the plugins DSL:

plugins {
  id("se.solrike.otsswinfo") version "1.0.0-beta.10"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("se.solrike.otsswinfo:ots-sw-info-gradle-plugin:1.0.0-beta.10")
  }
}

apply(plugin = "se.solrike.otsswinfo")

Using the plugins DSL:

plugins {
  id "se.solrike.otsswinfo" version "1.0.0-beta.10"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "se.solrike.otsswinfo:ots-sw-info-gradle-plugin:1.0.0-beta.10"
  }
}

apply plugin: "se.solrike.otsswinfo"

Learn how to apply plugins to subprojects