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.25
Created 19 July 2023.
                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.25"
}See also:
- 
                Adding the plugin to build logic for usage in precompiled script plugins.See the relevant documentation for more information. Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):dependencies { implementation("com.dorkbox.Licensing:com.dorkbox.Licensing.gradle.plugin:2.25") }It can then be applied in the precompiled script plugin:plugins { id("com.dorkbox.Licensing") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.dorkbox.Licensing:com.dorkbox.Licensing.gradle.plugin:2.25") } } apply(plugin = "com.dorkbox.Licensing")
- Applying plugins to all subprojects .