Search Gradle plugins

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.1

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.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.io.github.makele:gradle-spring-boot-microservice-plugin:0.0.1")
  }
}

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.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.io.github.makele:gradle-spring-boot-microservice-plugin:0.0.1"
  }
}

apply plugin: "io.github.makelefy.gradle-spring-boot-microservice-plugin"

Learn how to apply plugins to subprojects