com.dorkbox.Licensing
Owner: Dorkbox LLC
License definitions and legal management plugin for the Gradle build system
https://git.dorkbox.com/dorkbox/Licensing
Sources: https://git.dorkbox.com/dorkbox/Licensing
Version 2.28 (latest)
2.28
Created 18 September 2023.
License definitions and legal management plugin for the Gradle build system
Using the plugins DSL:
plugins {
id("com.dorkbox.Licensing") version "2.28"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.dorkbox:Licensing:2.28")
}
}
apply(plugin = "com.dorkbox.Licensing")
Using the plugins DSL:
plugins {
id "com.dorkbox.Licensing" version "2.28"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.dorkbox:Licensing:2.28"
}
}
apply plugin: "com.dorkbox.Licensing"