-
Notifications
You must be signed in to change notification settings - Fork 5
/
java.gradle
43 lines (34 loc) · 851 Bytes
/
java.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
37
38
39
40
41
42
43
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
jcenter()
mavenCentral()
maven {
url "https://repo.spring.io/snapshot/"
}
}
ext {
slf4jVersion = '1.7.11'
springBootVersion = '1.3.3.RELEASE'
springVersion = '4.2.5.RELEASE'
jacksonVersion = '2.6.5'
mockitoVersion = '1.9.5'
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:1.0.1"
compile "com.fasterxml.jackson.module:jackson-module-kotlin:2.6.5-2"
compile "org.slf4j:slf4j-api:${slf4jVersion}"
compile "junit:junit:4.12"
compile 'org.assertj:assertj-core:3.3.0'
compile "org.mockito:mockito-core:$mockitoVersion"
}
sourceSets {
main {
resources.srcDir 'src/resources'
java.srcDir 'src'
}
test {
resources.srcDir 'test/resources'
java.srcDir 'test'
}
}