1
0
mirror of synced 2026-05-22 21:33:16 +00:00

Added gradle build files (experimental)

This commit is contained in:
Luke Taylor
2009-12-04 21:33:17 +00:00
parent 40056f2e4a
commit dab76249db
10 changed files with 189 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
// Config Module build file
compileTestJava.dependsOn(':core:compileTestJava')
dependencies {
compile project(':core'),
project(':web'),
"javax.servlet:servlet-api:2.5",
'org.aspectj:aspectjweaver:1.6.5',
"org.springframework:spring-aop:$springVersion",
"org.springframework:spring-core:$springVersion",
"org.springframework:spring-context:$springVersion",
"org.springframework:spring-web:$springVersion",
"org.springframework:spring-beans:$springVersion",
"org.springframework:spring-tx:$springVersion"
testCompile project(':ldap'),
project(':openid'),
files(this.project(':core').sourceSets.test.classesDir),
'aopalliance:aopalliance:1.0',
'org.springframework.ldap:spring-ldap-core:1.3.0.RELEASE',
"org.springframework:spring-jdbc:$springVersion"
}
task show << {
println dependencies
}