Search Gradle plugins

Version 2.21

Created 03 February 2023.

License definitions and legal management plugin for the Gradle build system

Using the plugins DSL:

plugins {
  id("com.dorkbox.Licensing") version "2.21"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.dorkbox:Licensing:2.21")
  }
}

apply(plugin = "com.dorkbox.Licensing")

Using the plugins DSL:

plugins {
  id "com.dorkbox.Licensing" version "2.21"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.dorkbox:Licensing:2.21"
  }
}

apply plugin: "com.dorkbox.Licensing"

Learn how to apply plugins to subprojects