com.github.vlsi.license-gather
Owner: Vladimir Sitnikov
Dependency license gathering Gradle plugin
https://github.com/vlsi/vlsi-release-plugins
Sources: https://github.com/vlsi/vlsi-release-plugins
Version 1.0.0-SNAPSHOT
1.0.0-SNAPSHOT
Created 28 June 2019.
Dependency license gathering Gradle plugin
Using the plugins DSL:
plugins {
id("com.github.vlsi.license-gather") version "1.0.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.vlsi.gradle:license-gather-plugin:1.0.0-SNAPSHOT")
}
}
apply(plugin = "com.github.vlsi.license-gather")
Using the plugins DSL:
plugins {
id "com.github.vlsi.license-gather" version "1.0.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.vlsi.gradle:license-gather-plugin:1.0.0-SNAPSHOT"
}
}
apply plugin: "com.github.vlsi.license-gather"