com.rhtech.springbootversion
Owner: RIDVAN OZAYDIN
Automatically Manages Version For Spring Boot Applications!
https://github.com/rozaydin/SpringBootVersionPlugin
Sources: https://github.com/rozaydin/SpringBootVersionPlugin
Version 0.9.2
0.9.2
Created 29 March 2018.
Automatically Manages Version For Spring Boot Applications!
Using the plugins DSL:
plugins {
id("com.rhtech.springbootversion") version "0.9.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.rhtech:spring-boot-version-plugin:0.9.2")
}
}
apply(plugin = "com.rhtech.springbootversion")
Using the plugins DSL:
plugins {
id "com.rhtech.springbootversion" version "0.9.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.rhtech:spring-boot-version-plugin:0.9.2"
}
}
apply plugin: "com.rhtech.springbootversion"