22 lines
457 B
Kotlin
22 lines
457 B
Kotlin
import org.springframework.boot.gradle.tasks.bundling.BootJar
|
|
|
|
plugins {
|
|
id("ltd.hlaeja.plugin.hlaeja-common-plugin.common")
|
|
id("ltd.hlaeja.plugin.hlaeja-common-plugin.library-manifest")
|
|
id("ltd.hlaeja.plugin.hlaeja-common-plugin.library-publish")
|
|
id("org.springframework.boot")
|
|
}
|
|
|
|
java {
|
|
withSourcesJar()
|
|
}
|
|
|
|
tasks {
|
|
named<Jar>("jar") {
|
|
archiveClassifier.set("")
|
|
}
|
|
withType<BootJar> {
|
|
enabled = false
|
|
}
|
|
}
|