You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
971 B
39 lines
971 B
apply id: 'java' |
|
|
|
springVersion = '3.0.1.RELEASE' |
|
springLdapVersion = '1.3.0.RELEASE' |
|
ehcacheVersion = '1.6.2' |
|
aspectjVersion = '1.6.8' |
|
apacheDsVersion = '1.5.5' |
|
jstlVersion = '1.1.2' |
|
jettyVersion = '6.1.22' |
|
hsqlVersion = '1.8.0.10' |
|
|
|
configurations { |
|
provided |
|
compile.extendsFrom provided |
|
} |
|
|
|
dependencies { |
|
compile 'commons-logging:commons-logging:1.1.1' |
|
|
|
compile ("org.springframework:spring-core:$springVersion") { |
|
exclude(group: 'commons-logging', module: 'commons-logging') |
|
} |
|
|
|
testCompile 'junit:junit:4.7', |
|
'org.mockito:mockito-core:1.8.3', |
|
'org.jmock:jmock:2.5.1', |
|
'org.jmock:jmock-junit4:2.5.1', |
|
'org.hamcrest:hamcrest-core:1.1', |
|
'org.hamcrest:hamcrest-library:1.1', |
|
"org.springframework:spring-test:$springVersion" |
|
} |
|
|
|
test { |
|
onlyIf { |
|
!project.hasProperty('skipTests') |
|
} |
|
jvmArgs = ['-ea', '-Xms128m', '-Xmx500m', '-XX:MaxPermSize=128m'] |
|
} |
|
|
|
|