You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
414 B
Groovy
21 lines
414 B
Groovy
5 years ago
|
plugins {
|
||
|
id 'org.jetbrains.kotlin.jvm' apply false // https://youtrack.jetbrains.com/issue/KT-30276
|
||
|
}
|
||
|
|
||
|
description = 'Spring Boot Build'
|
||
|
|
||
|
allprojects {
|
||
|
group 'org.springframework.boot'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
maven { url 'https://repo.spring.io/milestone' }
|
||
|
maven { url 'https://repo.spring.io/snapshot' }
|
||
|
}
|
||
|
|
||
|
configurations.all {
|
||
|
resolutionStrategy.cacheChangingModulesFor 60, 'minutes'
|
||
|
}
|
||
|
|
||
|
}
|