de.weltn24.java-conventions
Owner: WeltN24 CI-User
The plugin applies conventions for java projects according to WeltN24's best practices
https://github.com/WeltN24/gradle-java-conventions-plugin
Sources: https://github.com/WeltN24/gradle-java-conventions-plugin
Version 4.0.1 (latest)
Created 19 April 2016.
The plugin applies best practices and conventions for developing Java based microservices@welt
Add this plugin to your build using the plugins DSL:
plugins {
id("de.weltn24.java-conventions") version "4.0.1"
}
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.weltn24.java-conventions:de.weltn24.java-conventions.gradle.plugin:4.0.1") }
It can then be applied in the precompiled script plugin:plugins { id("de.weltn24.java-conventions") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.weltn24.java-conventions:de.weltn24.java-conventions.gradle.plugin:4.0.1") } } apply(plugin = "de.weltn24.java-conventions")
- Applying plugins to all subprojects .