vast.springenv
Owner: Denis
Creates bootRun tasks for specific spring profiles
https://github.com/vastik/gradle-spring-environments
Sources: https://github.com/vastik/gradle-spring-environments
Version 1.2 (latest)
1.2
Created 14 July 2020.
Creates bootRun tasks for specific spring profiles
Using the plugins DSL:
plugins {
id("vast.springenv") version "1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.vast.gradle:spring-env:1.2")
}
}
apply(plugin = "vast.springenv")
Using the plugins DSL:
plugins {
id "vast.springenv" version "1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.vast.gradle:spring-env:1.2"
}
}
apply plugin: "vast.springenv"