mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-05-03 12:29:44 +01:00
d4089747b8
Prior to this commit, the Spring Framework build would partially use the
dependency management plugin to import and enforce BOMs.
This commit applies the dependency management plugin to all Java
projects and regroups all version management declaration in the root
`build.gradle` file (versions and exclusions).
Some versions are overridden in specific modules for
backwards-compatibility reasons or extended support.
This commit also adds the Gradle versions plugin that checks for
dependency upgrades in artifact repositories and produces a report; you
can use the following:
./gradlew dependencyUpdates
10 lines
308 B
Groovy
10 lines
308 B
Groovy
description = "Spring Context Indexer"
|
|
|
|
dependencies {
|
|
testCompile(project(":spring-context"))
|
|
testCompile("javax.inject:javax.inject")
|
|
testCompile("javax.annotation:javax.annotation-api")
|
|
testCompile("javax.transaction:javax.transaction-api")
|
|
testCompile("org.eclipse.persistence:javax.persistence")
|
|
}
|