2020-01-10 21:48:43 +08:00
|
|
|
plugins {
|
2021-12-01 22:38:25 +08:00
|
|
|
id "base"
|
2020-01-23 03:24:37 +08:00
|
|
|
id "org.jetbrains.kotlin.jvm" apply false // https://youtrack.jetbrains.com/issue/KT-30276
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|
|
|
|
|
2020-01-23 03:24:37 +08:00
|
|
|
description = "Spring Boot Build"
|
2020-01-10 21:48:43 +08:00
|
|
|
|
2020-04-15 07:35:09 +08:00
|
|
|
defaultTasks 'build'
|
|
|
|
|
2020-01-10 21:48:43 +08:00
|
|
|
allprojects {
|
2025-01-02 19:12:09 +08:00
|
|
|
group = "org.springframework.boot"
|
2024-09-27 10:33:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
subprojects {
|
|
|
|
apply plugin: "org.springframework.boot.conventions"
|
2020-01-10 21:48:43 +08:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2024-09-27 10:33:34 +08:00
|
|
|
spring.mavenRepositories()
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
configurations.all {
|
2020-08-04 22:36:01 +08:00
|
|
|
resolutionStrategy.cacheChangingModulesFor 0, "minutes"
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|
|
|
|
}
|
2024-09-25 04:52:39 +08:00
|
|
|
|