12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- apply: 'war'
- apply: 'jetty'
- //apply: 'project-reports'
- version = '3.1.0.CI-SNAPSHOT'
- springVersion = '3.0.1.RELEASE'
- targetCompatibility = '1.5'
- sourceCompatibility = '1.5'
- repositories {
- mavenRepo name:'Local', urls: "file://" + System.properties['user.home'] + "/.m2/repository"
- }
- dependencies {
- compile 'aopalliance:aopalliance:1.0',
- "org.springframework.security:spring-security-core:$version",
- "org.springframework.security:spring-security-web:$version",
- "org.springframework:spring-beans:$springVersion",
- "org.springframework:spring-core:$springVersion",
- "org.springframework:spring-context:$springVersion",
- "org.springframework:spring-tx:$springVersion",
- "org.springframework:spring-web:$springVersion",
- "org.springframework:spring-webmvc:$springVersion",
- 'org.aspectj:aspectjrt:1.6.8',
- 'org.hibernate:ejb3-persistence:1.0.2.GA',
- 'javax.persistence:persistence-api:1.0',
- 'org.slf4j:jcl-over-slf4j:1.5.11'
- providedCompile "org.apache.tomcat:tomcat-servlet-api:$servletApiVersion"
- runtime 'org.hibernate:hibernate-entitymanager:3.4.0.GA',
- "org.springframework:spring-context-support:$springVersion",
- "org.springframework.security:spring-security-ldap:$version",
- "org.springframework.security:spring-security-config:$version",
- "org.springframework.security:spring-security-taglibs:$version",
- "org.springframework:spring-orm:$springVersion",
- 'org.apache.directory.server:apacheds-core:1.5.5',
- 'org.apache.directory.server:apacheds-server-jndi:1.5.5',
- 'org.freemarker:freemarker:2.3.16',
- "hsqldb:hsqldb:1.8.0.10",
- 'org.slf4j:slf4j-log4j12:1.5.11',
- 'log4j:log4j:1.2.14'
- }
|