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.0.0-RELEASE
1.0.0-RELEASE
Created 04 June 2021.
Like maven's profile replacement plugin
Using the plugins DSL:
plugins {
id("com.github.aniaan.gradle-spring-profile") version "1.0.0-RELEASE"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.aniaan:plugin:1.0.0-RELEASE")
}
}
apply(plugin = "com.github.aniaan.gradle-spring-profile")
Using the plugins DSL:
plugins {
id "com.github.aniaan.gradle-spring-profile" version "1.0.0-RELEASE"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.aniaan:plugin:1.0.0-RELEASE"
}
}
apply plugin: "com.github.aniaan.gradle-spring-profile"