-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
36 lines (28 loc) · 918 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
subprojects {
apply plugin: 'java'
sourceCompatibility = 1.8
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
ext {
log4jVersion = '2.0-rc1'
springVersion = '4.0.5.RELEASE'
springSecurityVersion = '3.2.3.RELEASE'
springSecurityOAuth2Version = '2.0.1.RELEASE'
jacksonDatabindVersion = '2.3.3'
servletApiVersion = '3.0.1'
restAssuredVersion = '2.3.2'
basicCompileDependenciesForTests = [
'junit:junit:4.11',
'org.hamcrest:hamcrest-library:1.3',
'org.mockito:mockito-core:1.9.5'
]
}
dependencies {
compile 'org.slf4j:slf4j-api:1.7.7'
runtime "org.apache.logging.log4j:log4j-slf4j-impl:$log4jVersion"
runtime "org.apache.logging.log4j:log4j-core:$log4jVersion"
testCompile basicCompileDependenciesForTests
}
}