2017-08-21 20:41:28 +08:00
|
|
|
/*
|
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
maven {
|
|
|
|
url "https://dl.bintray.com/kotlin/kotlin-eap-1.1"
|
|
|
|
}
|
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
2012-12-07 05:40:53 +08:00
|
|
|
include "spring-aop"
|
|
|
|
include "spring-aspects"
|
|
|
|
include "spring-beans"
|
|
|
|
include "spring-context"
|
|
|
|
include "spring-context-support"
|
2016-08-12 16:49:37 +08:00
|
|
|
include "spring-context-indexer"
|
2012-12-07 05:40:53 +08:00
|
|
|
include "spring-core"
|
|
|
|
include "spring-expression"
|
|
|
|
include "spring-instrument"
|
2017-05-04 02:29:05 +08:00
|
|
|
include "spring-jcl"
|
2012-12-07 05:40:53 +08:00
|
|
|
include "spring-jdbc"
|
|
|
|
include "spring-jms"
|
2013-07-12 21:02:51 +08:00
|
|
|
include "spring-messaging"
|
2012-12-07 05:40:53 +08:00
|
|
|
include "spring-orm"
|
|
|
|
include "spring-oxm"
|
|
|
|
include "spring-test"
|
|
|
|
include "spring-tx"
|
|
|
|
include "spring-web"
|
|
|
|
include "spring-webmvc"
|
2017-02-02 06:02:52 +08:00
|
|
|
include "spring-webflux"
|
2013-03-10 21:54:11 +08:00
|
|
|
include "spring-websocket"
|
2013-11-28 07:32:04 +08:00
|
|
|
include "spring-framework-bom"
|
2013-01-01 09:15:34 +08:00
|
|
|
|
|
|
|
// Exposes gradle buildSrc for IDE support
|
|
|
|
include "buildSrc"
|
|
|
|
rootProject.children.find{ it.name == "buildSrc" }.name = "spring-build-src"
|
2017-08-21 20:40:35 +08:00
|
|
|
|
|
|
|
rootProject.name = 'spring'
|
|
|
|
rootProject.children.each {project ->
|
|
|
|
project.buildFileName = "${project.name}.gradle"
|
|
|
|
}
|