You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
447 B
26 lines
447 B
plugins { |
|
id "base" |
|
id "org.jetbrains.kotlin.jvm" apply false // https://youtrack.jetbrains.com/issue/KT-30276 |
|
} |
|
|
|
description = "Spring Boot Build" |
|
|
|
defaultTasks 'build' |
|
|
|
allprojects { |
|
group = "org.springframework.boot" |
|
} |
|
|
|
subprojects { |
|
apply plugin: "org.springframework.boot.conventions" |
|
|
|
repositories { |
|
mavenCentral() |
|
spring.mavenRepositories() |
|
} |
|
|
|
configurations.all { |
|
resolutionStrategy.cacheChangingModulesFor 0, "minutes" |
|
} |
|
} |
|
|
|
|