Search Gradle plugins

Version 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"

Learn how to apply plugins to subprojects