• Dave Syer's avatar
    Tooling for PropertiesLauncher in JAR archives · 47cd5dd6
    Dave Syer authored
    To use PropertiesLauncher instead of JarLauncher in an
    executable JAR we have provided tooling support. In Maven
    (using the starter parent to default some of the settings):
    
        <plugin>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-maven-plugin</artifactId>
          <configuration>
            <layout>ZIP</layout>
          </configuration>
        </plugin>
    
    in Gradle:
    
        apply plugin: "spring-boot"
        springBoot {
            layout = 'ZIP'
          }
        }
    
    [Fixes #58837492] [bs-330] Add tooling for PropertiesLauncher
    47cd5dd6
verify.groovy 142 Bytes