-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
32 lines (25 loc) · 964 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
apply plugin: 'java'
apply plugin: 'groovy'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
jcenter()
}
dependencies {
compile 'org.slf4j:slf4j-api:1.7.7'
compile 'com.google.guava:guava:19.0'
compile 'org.projectlombok:lombok:1.16.8'
// validation
compile 'javax.validation:validation-api:1.1.0.Final'
compile 'org.hibernate:hibernate-validator:5.3.0.Alpha1'
compile 'org.glassfish.web:el-impl:2.2.1-b05'
compile 'com.javaslang:javaslang:2.0.0-RC4'
compile 'com.javaslang:javaslang-parent:2.0.0-RC4'
compile 'io.javaslang:javaslang-match:2.0.2'
compile 'org.springframework:spring-context:4.2.5.RELEASE'
testCompile 'junit:junit:4.12'
testCompile 'org.springframework:spring-test:4.2.5.RELEASE'
testCompile 'org.codehaus.groovy:groovy-all:2.4.4'
testCompile 'org.spockframework:spock-core:1.0-groovy-2.4'
testCompile 'org.spockframework:spock-spring:1.0-groovy-2.4'
}