Search Gradle plugins

Version 1.0.23.RELEASE

Created 14 February 2020.

No version description available.

Using the plugins DSL:

plugins {
  id("org.springframework.boot.experimental.thin-launcher") version "1.0.23.RELEASE"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.springframework.boot.experimental:spring-boot-thin-gradle-plugin:1.0.23.RELEASE")
  }
}

apply(plugin = "org.springframework.boot.experimental.thin-launcher")

Using the plugins DSL:

plugins {
  id "org.springframework.boot.experimental.thin-launcher" version "1.0.23.RELEASE"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.springframework.boot.experimental:spring-boot-thin-gradle-plugin:1.0.23.RELEASE"
  }
}

apply plugin: "org.springframework.boot.experimental.thin-launcher"

Learn how to apply plugins to subprojects