Search Gradle plugins

Version 1.0.05 (latest)

Created 18 July 2017.

MDW Spring Boot for Gradle

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.centurylink.mdw.boot") version "1.0.05"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.centurylink.mdw.boot:com.centurylink.mdw.boot.gradle.plugin:1.0.05")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.centurylink.mdw.boot")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.centurylink.mdw.boot:com.centurylink.mdw.boot.gradle.plugin:1.0.05")
      }
    }
    
    apply(plugin = "com.centurylink.mdw.boot")
  • Applying plugins to all subprojects .