This commit enables the publishing of Gradle metadata with Spring Framework artifacts. This feature will be enabled by default with Gradle 6.0, so Spring Framework will consistently push this information in the 5.2.x generation. Fixes gh-23503
40 lines
952 B
Groovy
40 lines
952 B
Groovy
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
maven { url 'https://repo.spring.io/plugins-release' }
|
|
}
|
|
}
|
|
|
|
enableFeaturePreview("GRADLE_METADATA")
|
|
|
|
include "spring-aop"
|
|
include "spring-aspects"
|
|
include "spring-beans"
|
|
include "spring-context"
|
|
include "spring-context-support"
|
|
include "spring-context-indexer"
|
|
include "spring-core"
|
|
include "kotlin-coroutines"
|
|
project(':kotlin-coroutines').projectDir = file('spring-core/kotlin-coroutines')
|
|
include "spring-expression"
|
|
include "spring-instrument"
|
|
include "spring-jcl"
|
|
include "spring-jdbc"
|
|
include "spring-jms"
|
|
include "spring-messaging"
|
|
include "spring-orm"
|
|
include "spring-oxm"
|
|
include "spring-test"
|
|
include "spring-tx"
|
|
include "spring-web"
|
|
include "spring-webmvc"
|
|
include "spring-webflux"
|
|
include "spring-websocket"
|
|
include "framework-bom"
|
|
include "integration-tests"
|
|
|
|
rootProject.name = "spring"
|
|
rootProject.children.each {project ->
|
|
project.buildFileName = "${project.name}.gradle"
|
|
}
|