se.solrike.otsswinfo
Owner: Lucas Persson
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.2
1.0.0-beta.2
Created 06 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 can also generate an version up-to-date report for the dependencies.
And the plugin can also check the license on each dependency.
Min Gradle version 7.0.
Using the plugins DSL:
plugins {
id("se.solrike.otsswinfo") version "1.0.0-beta.2"
}
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.2")
}
}
apply(plugin = "se.solrike.otsswinfo")
Using the plugins DSL:
plugins {
id "se.solrike.otsswinfo" version "1.0.0-beta.2"
}
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.2"
}
}
apply plugin: "se.solrike.otsswinfo"