2017-08-21 20:41:55 +08:00
|
|
|
description = "Spring Framework (Bill of Materials)"
|
|
|
|
|
2019-08-21 21:24:03 +08:00
|
|
|
apply plugin: 'java-platform'
|
|
|
|
apply from: "$rootDir/gradle/publications.gradle"
|
2019-08-21 02:26:43 +08:00
|
|
|
|
2019-08-21 21:24:03 +08:00
|
|
|
group = "org.springframework"
|
2017-08-21 20:41:55 +08:00
|
|
|
|
2019-08-21 21:24:03 +08:00
|
|
|
dependencies {
|
|
|
|
constraints {
|
2022-07-28 16:43:26 +08:00
|
|
|
parent.moduleProjects.sort { "$it.name" }.each {
|
2019-08-21 21:24:03 +08:00
|
|
|
api it
|
2017-08-21 20:41:55 +08:00
|
|
|
}
|
|
|
|
}
|
2017-09-23 17:28:19 +08:00
|
|
|
}
|
2019-08-21 21:24:03 +08:00
|
|
|
|
|
|
|
publishing {
|
|
|
|
publications {
|
2019-08-22 00:42:17 +08:00
|
|
|
mavenJava(MavenPublication) {
|
2019-08-21 21:24:03 +08:00
|
|
|
artifactId = 'spring-framework-bom'
|
|
|
|
from components.javaPlatform
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|