build.gradle 1009 B

123456789101112131415161718192021222324252627
  1. // Config Module build file
  2. compileTestJava.dependsOn(':core:compileTestJava')
  3. dependencies {
  4. compile project(':core'),
  5. project(':web'),
  6. "javax.servlet:servlet-api:2.5",
  7. 'org.aspectj:aspectjweaver:1.6.5',
  8. "org.springframework:spring-aop:$springVersion",
  9. "org.springframework:spring-core:$springVersion",
  10. "org.springframework:spring-context:$springVersion",
  11. "org.springframework:spring-web:$springVersion",
  12. "org.springframework:spring-beans:$springVersion",
  13. "org.springframework:spring-tx:$springVersion"
  14. testCompile project(':ldap'),
  15. project(':openid'),
  16. files(this.project(':core').sourceSets.test.classesDir),
  17. 'aopalliance:aopalliance:1.0',
  18. 'org.springframework.ldap:spring-ldap-core:1.3.0.RELEASE',
  19. "org.springframework:spring-jdbc:$springVersion"
  20. }
  21. task show << {
  22. println dependencies
  23. }