build.gradle 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. apply: 'war'
  2. apply: 'jetty'
  3. //apply: 'project-reports'
  4. version = '3.1.0.CI-SNAPSHOT'
  5. springVersion = '3.0.1.RELEASE'
  6. targetCompatibility = '1.5'
  7. sourceCompatibility = '1.5'
  8. repositories {
  9. mavenRepo name:'Local', urls: "file://" + System.properties['user.home'] + "/.m2/repository"
  10. }
  11. dependencies {
  12. compile 'aopalliance:aopalliance:1.0',
  13. "org.springframework.security:spring-security-core:$version",
  14. "org.springframework.security:spring-security-web:$version",
  15. "org.springframework:spring-beans:$springVersion",
  16. "org.springframework:spring-core:$springVersion",
  17. "org.springframework:spring-context:$springVersion",
  18. "org.springframework:spring-tx:$springVersion",
  19. "org.springframework:spring-web:$springVersion",
  20. "org.springframework:spring-webmvc:$springVersion",
  21. 'org.aspectj:aspectjrt:1.6.8',
  22. 'org.hibernate:ejb3-persistence:1.0.2.GA',
  23. 'javax.persistence:persistence-api:1.0',
  24. 'org.slf4j:jcl-over-slf4j:1.5.11'
  25. providedCompile "org.apache.tomcat:tomcat-servlet-api:$servletApiVersion"
  26. runtime 'org.hibernate:hibernate-entitymanager:3.4.0.GA',
  27. "org.springframework:spring-context-support:$springVersion",
  28. "org.springframework.security:spring-security-ldap:$version",
  29. "org.springframework.security:spring-security-config:$version",
  30. "org.springframework.security:spring-security-taglibs:$version",
  31. "org.springframework:spring-orm:$springVersion",
  32. 'org.apache.directory.server:apacheds-core:1.5.5',
  33. 'org.apache.directory.server:apacheds-server-jndi:1.5.5',
  34. 'org.freemarker:freemarker:2.3.16',
  35. "hsqldb:hsqldb:1.8.0.10",
  36. 'org.slf4j:slf4j-log4j12:1.5.11',
  37. 'log4j:log4j:1.2.14'
  38. }