com.github.aniaan.gradle-spring-profile
所有者: BeanNan
类似于 Maven 的配置文件替换插件
https://github.com/aniaan/gradle-spring-profile
资源: https://github.com/aniaan/gradle-spring-profile.git
使用 plugins DSL
plugins {
id("com.github.aniaan.gradle-spring-profile") version "1.1.0-SNAPSHOT"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.aniaan:plugin:1.1.0-SNAPSHOT")
}
}
apply(plugin = "com.github.aniaan.gradle-spring-profile")
使用 plugins DSL
plugins {
id "com.github.aniaan.gradle-spring-profile" version "1.1.0-SNAPSHOT"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.aniaan:plugin:1.1.0-SNAPSHOT"
}
}
apply plugin: "com.github.aniaan.gradle-spring-profile"