org.springframework.boot.experimental.thin-launcher
所有者: Spring
用于构建“瘦”可执行jar的工具,重点关注但不仅限于Spring Boot。
https://github.com/spring-projects-experimental/spring-boot-thin-launcher
使用plugins DSL
plugins {
id("org.springframework.boot.experimental.thin-launcher") version "1.0.31.RELEASE"
}
使用旧的插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("org.springframework.boot.experimental:spring-boot-thin-gradle-plugin:1.0.31.RELEASE")
}
}
apply(plugin = "org.springframework.boot.experimental.thin-launcher")
使用plugins DSL
plugins {
id "org.springframework.boot.experimental.thin-launcher" version "1.0.31.RELEASE"
}
使用旧的插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "org.springframework.boot.experimental:spring-boot-thin-gradle-plugin:1.0.31.RELEASE"
}
}
apply plugin: "org.springframework.boot.experimental.thin-launcher"