mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-05-03 04:19:47 +01:00
3b1af692cc
# Conflicts: # spring-beans/spring-beans.gradle # spring-context/spring-context.gradle # spring-orm/spring-orm.gradle # spring-test/spring-test.gradle # spring-web/spring-web.gradle # spring-webflux/spring-webflux.gradle
20 lines
718 B
Groovy
20 lines
718 B
Groovy
description = "Spring Beans"
|
|
|
|
apply plugin: "kotlin"
|
|
|
|
dependencies {
|
|
api(project(":spring-core"))
|
|
optional("jakarta.inject:jakarta.inject-api")
|
|
optional("org.apache.groovy:groovy-xml")
|
|
optional("org.jetbrains.kotlin:kotlin-reflect")
|
|
optional("org.jetbrains.kotlin:kotlin-stdlib")
|
|
optional("org.reactivestreams:reactive-streams")
|
|
optional("org.yaml:snakeyaml")
|
|
testFixturesApi("org.junit.jupiter:junit-jupiter-api")
|
|
testFixturesImplementation("com.google.code.findbugs:jsr305")
|
|
testFixturesImplementation("org.assertj:assertj-core")
|
|
testImplementation(project(":spring-core-test"))
|
|
testImplementation(testFixtures(project(":spring-core")))
|
|
testImplementation("jakarta.annotation:jakarta.annotation-api")
|
|
}
|