io.github.nagyesta.run-dash-license-tool-gradle-plugin
Owner: Esta Nagy
Adds a convenient task to run the Dash License Tool on your Gradle build
https://github.com/nagyesta/run-dash-license-tool-gradle-plugin
Sources: https://github.com/nagyesta/run-dash-license-tool-gradle-plugin
Version 0.4.73 (latest)
0.4.73
Created 17 November 2024.
Adds a convenient task to run the Eclipse Dash License Tool on your Gradle build
Using the plugins DSL:
plugins {
id("io.github.nagyesta.run-dash-license-tool-gradle-plugin") version "0.4.73"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.nagyesta:run-dash-license-tool-gradle-plugin:0.4.73")
}
}
apply(plugin = "io.github.nagyesta.run-dash-license-tool-gradle-plugin")
Using the plugins DSL:
plugins {
id "io.github.nagyesta.run-dash-license-tool-gradle-plugin" version "0.4.73"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.nagyesta:run-dash-license-tool-gradle-plugin:0.4.73"
}
}
apply plugin: "io.github.nagyesta.run-dash-license-tool-gradle-plugin"