com.github.edineipiovesan
Owner: Edinei Piovesan
Check if properties has different values for different profiles.
http://github.com/edineipiovesan/
Sources: http://github.com/edineipiovesan/spring-profile-config-checker
Version 0.1 (latest)
0.1
Created 05 September 2020.
Check if properties has different values for different profiles.
Using the plugins DSL:
plugins {
id("com.github.edineipiovesan") version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.edineipiovesan:spring-profile-config-checker:1.0-SNAPSHOT")
}
}
apply(plugin = "com.github.edineipiovesan")
Using the plugins DSL:
plugins {
id "com.github.edineipiovesan" version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.edineipiovesan:spring-profile-config-checker:1.0-SNAPSHOT"
}
}
apply plugin: "com.github.edineipiovesan"