spring-context.gradle 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. description = "Spring Context"
  2. apply plugin: "groovy"
  3. apply plugin: "kotlin"
  4. dependencies {
  5. compile(project(":spring-aop"))
  6. compile(project(":spring-beans"))
  7. compile(project(":spring-core"))
  8. compile(project(":spring-expression"))
  9. optional(project(":spring-instrument"))
  10. optional("javax.annotation:javax.annotation-api")
  11. optional("javax.ejb:javax.ejb-api")
  12. optional("javax.enterprise.concurrent:javax.enterprise.concurrent-api")
  13. optional("javax.inject:javax.inject")
  14. optional("javax.interceptor:javax.interceptor-api")
  15. optional("javax.money:money-api")
  16. // Overriding 2.0.1.Final due to Bean Validation 1.1 compatibility in LocalValidatorFactoryBean
  17. optional("javax.validation:validation-api:1.1.0.Final")
  18. optional("javax.xml.ws:jaxws-api")
  19. optional("org.aspectj:aspectjweaver")
  20. optional("org.codehaus.groovy:groovy")
  21. optional("org.apache-extras.beanshell:bsh")
  22. optional("joda-time:joda-time")
  23. optional("org.hibernate:hibernate-validator:5.4.3.Final")
  24. optional("org.jetbrains.kotlin:kotlin-reflect")
  25. optional("org.jetbrains.kotlin:kotlin-stdlib")
  26. optional("org.reactivestreams:reactive-streams")
  27. testCompile(testFixtures(project(":spring-aop")))
  28. testCompile(testFixtures(project(":spring-beans")))
  29. testCompile(testFixtures(project(":spring-core")))
  30. testCompile("io.projectreactor:reactor-core")
  31. testCompile("org.codehaus.groovy:groovy-jsr223")
  32. testCompile("org.codehaus.groovy:groovy-test")
  33. testCompile("org.codehaus.groovy:groovy-xml")
  34. testCompile("org.apache.commons:commons-pool2")
  35. testCompile("javax.inject:javax.inject-tck")
  36. testCompile("org.awaitility:awaitility")
  37. testRuntime("javax.xml.bind:jaxb-api")
  38. testRuntime("org.glassfish:javax.el")
  39. // Substitute for javax.management:jmxremote_optional:1.0.1_04 (not available on Maven Central)
  40. testRuntime("org.glassfish.external:opendmk_jmxremote_optional_jar")
  41. testRuntime("org.javamoney:moneta")
  42. testRuntime("org.junit.vintage:junit-vintage-engine") // for @Inject TCK
  43. testFixturesApi("org.junit.jupiter:junit-jupiter-api")
  44. testFixturesImplementation(testFixtures(project(":spring-beans")))
  45. testFixturesImplementation("com.google.code.findbugs:jsr305")
  46. testFixturesImplementation("org.assertj:assertj-core")
  47. }