-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
30 lines (24 loc) · 829 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
apply from: 'https://raw.githubusercontent.com/dheeraj-mummareddy/gradle-templates/master/gradle/jumpstart-java-jar-project.gradle'
ext {
nettyVersion = "4.1.6.Final"
//test
spockVersion = "1.0-groovy-2.4"
junitVersion = "4.11"
mockitoVersion = '1.10.8'
groovyVersion = "2.4.4"
cgiLibVersion = "3.1"
sourceCompatibility = org.gradle.api.JavaVersion.VERSION_1_8
targetCompatibility = org.gradle.api.JavaVersion.VERSION_1_8
}
dependencies {
compile(
"io.netty:netty-all:$nettyVersion"
)
testCompile(
"junit:junit:$junitVersion",
"org.mockito:mockito-all:$mockitoVersion",
"org.codehaus.groovy:groovy-all:$groovyVersion",
"cglib:cglib:$cgiLibVersion",
"org.spockframework:spock-core:$spockVersion"
)
}