io.github.makelefy.gradle-spring-boot-microservice-plugin
Owner: ma-ke-le
This plugin applies best practices and conventions for developing Spring Boot microservices
Version 0.0.2 (latest)
0.0.2
Created 13 March 2017.
This plugin applies best practices and conventions for developing Spring Boot microservices
Using the plugins DSL:
plugins {
id("io.github.makelefy.gradle-spring-boot-microservice-plugin") version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.io.github.makelefy:gradle-spring-boot-microservice-plugin:0.0.2")
}
}
apply(plugin = "io.github.makelefy.gradle-spring-boot-microservice-plugin")
Using the plugins DSL:
plugins {
id "io.github.makelefy.gradle-spring-boot-microservice-plugin" version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.io.github.makelefy:gradle-spring-boot-microservice-plugin:0.0.2"
}
}
apply plugin: "io.github.makelefy.gradle-spring-boot-microservice-plugin"