co.tomlee.standard.java.logging
Owner: Tom Lee
Standard Gradle boilerplate for my personal projects
https://github.com/thomaslee/gradle-standard-plugin/
Sources: https://github.com/thomaslee/gradle-standard-plugin/
Version 0.0.2 (latest)
Created 27 August 2015.
Standard Gradle boilerplate for my personal projects
Add this plugin to your build using the plugins DSL:
plugins {
id("co.tomlee.standard.java.logging") version "0.0.2"
}
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("co.tomlee.standard.java.logging:co.tomlee.standard.java.logging.gradle.plugin:0.0.2") }
It can then be applied in the precompiled script plugin:plugins { id("co.tomlee.standard.java.logging") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("co.tomlee.standard.java.logging:co.tomlee.standard.java.logging.gradle.plugin:0.0.2") } } apply(plugin = "co.tomlee.standard.java.logging")
- Applying plugins to all subprojects .