Search Gradle plugins

Version 1.0.2 (latest)

1.0.2

Created 01 December 2016.

Configuration of spring boot application

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.marksandspencer:mands-gradle-spring-boot:1.0.2")
      }
    }
    
    apply(plugin = "com.marksandspencer.spring-boot")
  • Applying plugins to all subprojects .