-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
43 lines (30 loc) · 966 Bytes
/
Copy pathbuild.gradle
File metadata and controls
43 lines (30 loc) · 966 Bytes
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
37
38
39
40
allprojects {
group = 'com.roberthutto'
version = '0.1'
}
subprojects {
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
//Exludes dependencies from all subprojects
configurations.all {
it.exclude group: 'commons-logging'
it.exclude group: 'log4j', module: 'log4j'
it.exclude group: 'org.slf4j', module: '1.5*'
it.exclude group: 'org.slf4j', module: '1.6*'
it.exclude group: 'org.springframework', module: '2.*'
it.exclude group: 'org.springframework', module: '3.0.*'
}
dependencies {
//logging
compile('ch.qos.logback:logback-classic:1.1.2')
compile('org.slf4j:jul-to-slf4j:1.7.10')
compile('org.slf4j:jcl-over-slf4j:1.7.10')
compile('org.slf4j:log4j-over-slf4j:1.7.10')
compile('org.slf4j:slf4j-api:1.7.10')
//unit test
testCompile('junit:junit:4.11')
}
}