19 lines
294 B
Groovy
19 lines
294 B
Groovy
|
buildscript {
|
||
|
dependencies {
|
||
|
classpath files(pluginClasspath.split(','))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
apply plugin: 'org.springframework.boot'
|
||
|
apply plugin: 'java'
|
||
|
|
||
|
bootJar {
|
||
|
mainClass 'com.example.ExampleApplication'
|
||
|
}
|
||
|
|
||
|
// tag::include-launch-script[]
|
||
|
bootJar {
|
||
|
launchScript()
|
||
|
}
|
||
|
// end::include-launch-script[]
|