mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-05-02 20:09:31 +01:00
92e144a8a8
Add 'spring-framework-bom' meta-project that contains the other projects in a dependencyManagement section. Issue: SPR-11138
31 lines
791 B
Groovy
31 lines
791 B
Groovy
rootProject.name = "spring"
|
|
|
|
include "spring-aop"
|
|
include "spring-aspects"
|
|
include "spring-beans"
|
|
include "spring-beans-groovy"
|
|
include "spring-context"
|
|
include "spring-context-support"
|
|
include "spring-core"
|
|
include "spring-expression"
|
|
include "spring-instrument"
|
|
include "spring-instrument-tomcat"
|
|
include "spring-jdbc"
|
|
include "spring-jms"
|
|
include "spring-messaging"
|
|
include "spring-orm"
|
|
include "spring-orm-hibernate4"
|
|
include "spring-oxm"
|
|
include "spring-test"
|
|
include "spring-tx"
|
|
include "spring-web"
|
|
include "spring-webmvc"
|
|
include "spring-webmvc-portlet"
|
|
include "spring-webmvc-tiles3"
|
|
include "spring-websocket"
|
|
include "spring-framework-bom"
|
|
|
|
// Exposes gradle buildSrc for IDE support
|
|
include "buildSrc"
|
|
rootProject.children.find{ it.name == "buildSrc" }.name = "spring-build-src"
|