Search Gradle plugins

Version 0.1 (latest)

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"

Learn how to apply plugins to subprojects