config.gradle 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. // Config Module build file
  2. apply plugin: 'groovy'
  3. compileTestJava.dependsOn(':spring-security-core:compileTestJava')
  4. configurations {
  5. // GRADLE-1124
  6. compile.extendsFrom = []
  7. testCompile.extendsFrom groovy
  8. }
  9. dependencies {
  10. // NB: Don't add other compile time dependencies to the config module as this breaks tooling
  11. compile project(':spring-security-core'),
  12. project(':spring-security-web'),
  13. "org.aspectj:aspectjweaver:$aspectjVersion",
  14. 'aopalliance:aopalliance:1.0',
  15. "org.springframework:spring-aop:$springVersion",
  16. "org.springframework:spring-context:$springVersion",
  17. "org.springframework:spring-web:$springVersion",
  18. "org.springframework:spring-beans:$springVersion"
  19. provided "javax.servlet:servlet-api:2.5"
  20. groovy 'org.codehaus.groovy:groovy:1.8.7'
  21. testCompile project(':spring-security-ldap'),
  22. project(':spring-security-openid'),
  23. project(':spring-security-core').sourceSets.test.output,
  24. 'javax.annotation:jsr250-api:1.0',
  25. "org.springframework.ldap:spring-ldap-core:$springLdapVersion",
  26. "org.springframework:spring-expression:$springVersion",
  27. "org.springframework:spring-jdbc:$springVersion",
  28. "org.springframework:spring-tx:$springVersion",
  29. 'org.spockframework:spock-core:0.6-groovy-1.8',
  30. "org.slf4j:jcl-over-slf4j:$slf4jVersion",
  31. "org.powermock:powermock-core:$powerMockVersion",
  32. "org.powermock:powermock-api-support:$powerMockVersion",
  33. "org.powermock:powermock-module-junit4-common:$powerMockVersion",
  34. "org.powermock:powermock-module-junit4:$powerMockVersion",
  35. "org.powermock:powermock-api-mockito:$powerMockVersion",
  36. "org.powermock:powermock-reflect:$powerMockVersion"
  37. testCompile('org.openid4java:openid4java-nodeps:0.9.6') {
  38. exclude group: 'com.google.code.guice', module: 'guice'
  39. }
  40. testRuntime "hsqldb:hsqldb:$hsqlVersion",
  41. "cglib:cglib-nodep:2.2"
  42. }
  43. test {
  44. inputs.file file("$rootDir/docs/manual/src/docbook/appendix-namespace.xml")
  45. }