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.7.4
2.7.4
Created 19 May 2021.
License definitions and legal management plugin for the Gradle build system
Using the plugins DSL:
plugins {
id("com.dorkbox.Licensing") version "2.7.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.dorkbox:Licensing:2.7.4")
}
}
apply(plugin = "com.dorkbox.Licensing")
Using the plugins DSL:
plugins {
id "com.dorkbox.Licensing" version "2.7.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.dorkbox:Licensing:2.7.4"
}
}
apply plugin: "com.dorkbox.Licensing"