com.github.kuldeepg.springbootutility
Owner:
Kuldeep Ghogre
Plugin to start spring boot application as daemon.
https://www.github.com/KuldeepG
Version 1.0.1
Created 22 September 2015.
Plugin to start spring boot application as daemon.
Using the plugins DSL:
plugins {
id("com.github.kuldeepg.springbootutility") version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.kuldeepg.springbootutility:spring-boot-daemonize:1.0.1")
}
}
apply(plugin = "com.github.kuldeepg.springbootutility")
Using the plugins DSL:
plugins {
id "com.github.kuldeepg.springbootutility" version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.kuldeepg.springbootutility:spring-boot-daemonize:1.0.1"
}
}
apply plugin: "com.github.kuldeepg.springbootutility"