Search Gradle plugins

Version 2.10

2.10

Created 22 September 2021.

License definitions and legal management plugin for the Gradle build system

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.dorkbox:Licensing:2.10")
      }
    }
    
    apply(plugin = "com.dorkbox.Licensing")
  • Applying plugins to all subprojects .