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