You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
717 B
19 lines
717 B
description = "Spring Beans" |
|
|
|
apply plugin: "kotlin" |
|
|
|
dependencies { |
|
api(project(":spring-core")) |
|
optional("jakarta.inject:jakarta.inject-api") |
|
optional("org.yaml:snakeyaml") |
|
optional("org.apache.groovy:groovy-xml") |
|
optional("org.jetbrains.kotlin:kotlin-reflect") |
|
optional("org.jetbrains.kotlin:kotlin-stdlib") |
|
optional("org.reactivestreams:reactive-streams") |
|
testImplementation(testFixtures(project(":spring-core"))) |
|
testImplementation(project(":spring-core-test")) |
|
testImplementation("jakarta.annotation:jakarta.annotation-api") |
|
testFixturesApi("org.junit.jupiter:junit-jupiter-api") |
|
testFixturesImplementation("org.assertj:assertj-core") |
|
testFixturesImplementation("com.google.code.findbugs:jsr305") |
|
} |