mirror of https://github.com/usbharu/Hideout.git
Merge pull request #652 from usbharu/fix-resource-bundle
fix: ResourceBundleが読み込めなく鳴っている問題を修正
This commit is contained in:
commit
3306ae1b5d
|
@ -1,3 +1,5 @@
|
|||
import org.springframework.boot.gradle.tasks.bundling.BootJar
|
||||
|
||||
plugins {
|
||||
alias(libs.plugins.kotlin.jvm)
|
||||
alias(libs.plugins.spring.boot)
|
||||
|
@ -79,7 +81,11 @@ tasks {
|
|||
exclude("**/org/koin/ksp/generated/**", "**/generated/**")
|
||||
}
|
||||
}
|
||||
|
||||
named<BootJar>("bootJar") {
|
||||
layered {
|
||||
enabled.set(false)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
|
Loading…
Reference in New Issue