Search Gradle plugins

Version 1.0.31.RELEASE (latest)

Created 20 September 2023.

Gradle plugin for creating thin executable jars from Spring Boot and other applications

Using the plugins DSL:

plugins {
  id("org.springframework.boot.experimental.thin-launcher") version "1.0.31.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.31.RELEASE")
  }
}

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

Using the plugins DSL:

plugins {
  id "org.springframework.boot.experimental.thin-launcher" version "1.0.31.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.31.RELEASE"
  }
}

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

Learn how to apply plugins to subprojects