de.weltn24.spring-boot-conventions
Owner:
WeltN24 CI-User
The plugin applies conventions for spring boot projects according to WeltN24.
https://github.com/WeltN24/gradle-spring-boot-conventions-plugin
Sources: https://github.com/WeltN24/gradle-plugin-spring-boot-conventions
Version 1.2.1
Created 08 July 2015.
The plugin applies conventions for spring boot projects according to WeltN24's best practices
Add this plugin to your build using the plugins DSL:
plugins {
id("de.weltn24.spring-boot-conventions") version "1.2.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.spring-boot-conventions:de.weltn24.spring-boot-conventions.gradle.plugin:1.2.1") }
It can then be applied in the precompiled script plugin:plugins { id("de.weltn24.spring-boot-conventions") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.weltn24.spring-boot-conventions:de.weltn24.spring-boot-conventions.gradle.plugin:1.2.1") } } apply(plugin = "de.weltn24.spring-boot-conventions")
- Applying plugins to all subprojects .