Search Gradle plugins

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.29.RELEASE

Created 14 January 2023.

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

Add this plugin to your build using the plugins DSL:

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

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("org.springframework.boot.experimental.thin-launcher:org.springframework.boot.experimental.thin-launcher.gradle.plugin:1.0.29.RELEASE")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.springframework.boot.experimental.thin-launcher")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.springframework.boot.experimental.thin-launcher:org.springframework.boot.experimental.thin-launcher.gradle.plugin:1.0.29.RELEASE")
      }
    }
    
    apply(plugin = "org.springframework.boot.experimental.thin-launcher")
  • Applying plugins to all subprojects .