Search Gradle plugins

Version 2.4

2.4

Created 28 August 2020.

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.4"
}

See also:

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