blob: a10a9fbb6c8c69ed5672133517468dae12fc07c4 [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}
sijun.li37502292019-06-10 16:00:24 +080019rootProject.name = 'watermanager'
Tang Cheng6427f002019-04-09 13:10:47 +080020