Search Gradle plugins

Version 1.0.2 (latest)

Created 01 December 2016.

Configuration of spring boot application

Using the plugins DSL:

plugins {
  id("com.marksandspencer.spring-boot") version "1.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.marksandspencer:mands-gradle-spring-boot:1.0.2")
  }
}

apply(plugin = "com.marksandspencer.spring-boot")

Using the plugins DSL:

plugins {
  id "com.marksandspencer.spring-boot" version "1.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.marksandspencer:mands-gradle-spring-boot:1.0.2"
  }
}

apply plugin: "com.marksandspencer.spring-boot"

Learn how to apply plugins to subprojects