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.1

Created 28 February 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.

Min Gradle version 7.0.

Using the plugins DSL:

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

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.1")
  }
}

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

Using the plugins DSL:

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

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.1"
  }
}

apply plugin: "se.solrike.otsswinfo"

Learn how to apply plugins to subprojects