2019-08-23 03:19:30 +08:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
2022-02-16 07:06:43 +08:00
|
|
|
mavenCentral()
|
2019-08-23 03:19:30 +08:00
|
|
|
gradlePluginPortal()
|
2022-01-18 01:03:27 +08:00
|
|
|
maven { url "https://repo.spring.io/release" }
|
2019-08-23 03:19:30 +08:00
|
|
|
}
|
|
|
|
}
|
2020-01-02 17:29:55 +08:00
|
|
|
|
|
|
|
plugins {
|
2022-06-20 17:26:38 +08:00
|
|
|
id "com.gradle.enterprise" version "3.10.2"
|
2022-06-30 12:26:06 +08:00
|
|
|
id "io.spring.ge.conventions" version "0.0.10"
|
2020-01-02 17:29:55 +08:00
|
|
|
}
|
|
|
|
|
2012-12-07 05:40:53 +08:00
|
|
|
include "spring-aop"
|
|
|
|
include "spring-aspects"
|
|
|
|
include "spring-beans"
|
|
|
|
include "spring-context"
|
2016-08-12 16:49:37 +08:00
|
|
|
include "spring-context-indexer"
|
2020-06-24 22:08:21 +08:00
|
|
|
include "spring-context-support"
|
2012-12-07 05:40:53 +08:00
|
|
|
include "spring-core"
|
2022-07-28 16:43:26 +08:00
|
|
|
include "graalvm-feature"
|
|
|
|
project(':graalvm-feature').projectDir = file('spring-core/graalvm')
|
2022-02-25 13:57:11 +08:00
|
|
|
include "spring-core-test"
|
2012-12-07 05:40:53 +08:00
|
|
|
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"
|
2020-06-24 22:08:21 +08:00
|
|
|
include "spring-r2dbc"
|
2012-12-07 05:40:53 +08:00
|
|
|
include "spring-test"
|
|
|
|
include "spring-tx"
|
|
|
|
include "spring-web"
|
2017-02-02 06:02:52 +08:00
|
|
|
include "spring-webflux"
|
2020-06-24 22:08:21 +08:00
|
|
|
include "spring-webmvc"
|
2013-03-10 21:54:11 +08:00
|
|
|
include "spring-websocket"
|
2019-08-21 20:28:42 +08:00
|
|
|
include "framework-bom"
|
2019-07-23 17:28:31 +08:00
|
|
|
include "integration-tests"
|
2013-01-01 09:15:34 +08:00
|
|
|
|
2018-08-16 21:32:44 +08:00
|
|
|
rootProject.name = "spring"
|
2017-08-21 20:40:35 +08:00
|
|
|
rootProject.children.each {project ->
|
|
|
|
project.buildFileName = "${project.name}.gradle"
|
2017-09-23 17:28:19 +08:00
|
|
|
}
|
2020-04-28 23:31:46 +08:00
|
|
|
|
|
|
|
settings.gradle.projectsLoaded {
|
|
|
|
gradleEnterprise {
|
|
|
|
buildScan {
|
2020-04-29 21:14:23 +08:00
|
|
|
File buildDir = settings.gradle.rootProject.getBuildDir()
|
|
|
|
buildDir.mkdirs()
|
|
|
|
new File(buildDir, "build-scan-uri.txt").text = "(build scan not generated)"
|
2020-04-28 23:31:46 +08:00
|
|
|
buildScanPublished { scan ->
|
2020-04-29 21:14:23 +08:00
|
|
|
if (buildDir.exists()) {
|
|
|
|
new File(buildDir, "build-scan-uri.txt").text = "${scan.buildScanUri}\n"
|
2021-08-03 01:28:20 +08:00
|
|
|
}
|
2020-04-28 23:31:46 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|