com.github.aniaan.gradle-spring-profile
Owner: BeanNan
Like maven's profile replacement plugin
https://github.com/aniaan/gradle-spring-profile
Sources: https://github.com/aniaan/gradle-spring-profile.git
Version 1.1.0-SNAPSHOT (latest)
Created 19 June 2021.
Like maven's profile replacement plugin
Add this plugin to your build using the plugins DSL:
plugins {
id("com.github.aniaan.gradle-spring-profile") version "1.1.0-SNAPSHOT"
}
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.github.aniaan.gradle-spring-profile:com.github.aniaan.gradle-spring-profile.gradle.plugin:1.1.0-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("com.github.aniaan.gradle-spring-profile") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.aniaan.gradle-spring-profile:com.github.aniaan.gradle-spring-profile.gradle.plugin:1.1.0-SNAPSHOT") } } apply(plugin = "com.github.aniaan.gradle-spring-profile")
- Applying plugins to all subprojects .