blob: 3a84da46ded3c7f61b306d7e216a84c964dc3250 [file] [log] [blame]
Xia Kaixiang04f7b5b2019-04-08 17:56:29 +08001pluginManagement {
Tang Cheng6427f002019-04-09 13:10:47 +08002 resolutionStrategy {
3 eachPlugin {
4 if (requested.id.namespace != null) {
5 if (requested.id.namespace.startsWith("org.jetbrains.kotlin")) {
6 println "Kotlin version $kotlinVersion"
7 useVersion kotlinVersion
8 } else if(requested.id.namespace.startsWith("org.springframework")) {
9 println "Springboot version $springbootVersion"
10 useVersion springbootVersion
11 }
12 }
13 }
14 }
Xia Kaixiang04f7b5b2019-04-08 17:56:29 +080015 repositories {
16 gradlePluginPortal()
17 }
18}
19rootProject.name = 'dlpay'
Tang Cheng6427f002019-04-09 13:10:47 +080020