de.carne.java-tools
                  Owner:
                  
                    
                    Holger de Carne
                  
                
Collection of Gradle plugins for Java development
https://github.com/hdecarne/gradle-java-plugin
Sources: https://github.com/hdecarne/java-gradle-plugins.git
Version 0.5.6
Created 18 March 2018.
                Collection of Gradle plugins for Java development
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("de.carne.java-tools") version "0.5.6"
}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("de.carne.java-tools:de.carne.java-tools.gradle.plugin:0.5.6") }It can then be applied in the precompiled script plugin:plugins { id("de.carne.java-tools") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.carne.java-tools:de.carne.java-tools.gradle.plugin:0.5.6") } } apply(plugin = "de.carne.java-tools")
- Applying plugins to all subprojects .