33 lines
1009 B
Groovy
33 lines
1009 B
Groovy
apply plugin: 'java'
|
|
apply plugin: 'propdeps'
|
|
|
|
sourceCompatibility = '1.6'
|
|
targetCompatibility = '1.6'
|
|
|
|
ext.springVersion = '3.2.8.RELEASE'
|
|
ext.springDataVersion = '1.6.1.RELEASE'
|
|
ext.springBatchVersion = '2.0.4.RELEASE'
|
|
ext.junitVersion = '4.10'
|
|
ext.commonsPoolVersion = '1.5.4'
|
|
ext.commonsLangVersion = '2.4'
|
|
ext.commonsLoggingVersion = '1.1.1'
|
|
ext.gsbaseVersion = '2.0.1'
|
|
ext.log4jVersion = '1.2.15'
|
|
ext.mockitoVersion = '1.9.5'
|
|
ext.queryDslVersion = '3.2.4'
|
|
ext.slf4jVersion = '1.7.5'
|
|
ext.powerMockVersion = '1.5.1'
|
|
|
|
ext.powerMockDependencies = [
|
|
"org.powermock:powermock-core:$powerMockVersion",
|
|
"org.powermock:powermock-api-support:$powerMockVersion",
|
|
"org.powermock:powermock-module-junit4-common:$powerMockVersion",
|
|
"org.powermock:powermock-module-junit4:$powerMockVersion",
|
|
"org.powermock:powermock-api-mockito:$powerMockVersion",
|
|
"org.powermock:powermock-reflect:$powerMockVersion"
|
|
]
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url 'https://repo.spring.io/libs-snapshot' }
|
|
} |