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.

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("se.solrike.otsswinfo:se.solrike.otsswinfo.gradle.plugin:1.0.0-beta.10")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("se.solrike.otsswinfo")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("se.solrike.otsswinfo:se.solrike.otsswinfo.gradle.plugin:1.0.0-beta.10")
      }
    }
    
    apply(plugin = "se.solrike.otsswinfo")
  • Applying plugins to all subprojects .