-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependencies.gradle
33 lines (28 loc) · 1.32 KB
/
dependencies.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
/**
* Only dependencies which are required across ALL projects should be in here
*/
dependencies {
/**
* Core dependencies
*/
compile group: 'org.codehaus.groovy', name: 'groovy', version: groovyVersion
compile group: 'org.codehaus.groovy', name: 'groovy-all', version: groovyVersion
compile group: 'com.google.code.gson', name: 'gson', version: gsonVersion
compile group: 'commons-codec', name: 'commons-codec', version: commonsCodecVersion
compile group: 'com.google.guava', name: 'guava', version: '18.0'
/**
* Logging
*/
// Use slf4j logging API and force all log4j over slf4j
compile group: 'org.slf4j', name: 'slf4j-api', version: slf4jVersion
compile group: 'org.slf4j', name: 'log4j-over-slf4j', version: slf4jVersion, transitive: false
compile group: 'org.slf4j', name: 'jul-to-slf4j', version: slf4jVersion
compile group: 'org.slf4j', name: 'jcl-over-slf4j', version: slf4jVersion
testRuntime group: 'ch.qos.logback', name: 'logback-classic', version: logbackVersion, transitive: false
testRuntime group: 'ch.qos.logback', name: 'logback-core', version: logbackVersion
/**
* Testing
*/
testCompile group: 'org.spockframework', name: 'spock-core', version: '1.1-groovy-2.4'
testCompile group: 'junit', name: 'junit', version: '4.12'
}