org.springframework.boot.experimental.thin-launcher
Owner: Spring
Tools for building "thin" executable jars, with a focus on, but not exclusively for, Spring Boot.
https://github.com/spring-projects-experimental/spring-boot-thin-launcher
Version 1.0.23.RELEASE
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"