17 lines
309 B
Groovy
17 lines
309 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'org.springframework.boot' version '{gradle-project-version}'
|
|
}
|
|
|
|
tasks.named("bootJar") {
|
|
mainClass = 'com.example.ExampleApplication'
|
|
}
|
|
|
|
// tag::custom-launch-script[]
|
|
tasks.named("bootJar") {
|
|
launchScript {
|
|
script = file('src/custom.script')
|
|
}
|
|
}
|
|
// end::custom-launch-script[]
|