2025-06-21 08:20:50 +08:00
|
|
|
/*
|
|
|
|
* Copyright 2012-present the original author or authors.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the License);
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
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
|
|
|
|