Search Gradle plugins

Version 2.7.1

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.dorkbox.Licensing"

Learn how to apply plugins to subprojects