-
Notifications
You must be signed in to change notification settings - Fork 9
/
build.gradle
31 lines (26 loc) · 1.01 KB
/
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
31
plugins {
id 'java'
id 'groovy'
}
repositories {
mavenCentral()
}
dependencies {
compile group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: '1.2.4.RELEASE'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-data-mongodb', version: '1.2.4.RELEASE'
compile group: 'com.github.fakemongo', name: 'fongo', version: '1.6.2'
compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.1.3'
testCompile group: 'org.spockframework', name: 'spock-core', version: '1.0-groovy-2.4'
testCompile group: 'org.spockframework', name: 'spock-spring', version: '1.0-groovy-2.4'
testCompile group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: '1.2.4.RELEASE'
testCompile group: 'com.github.tomakehurst', name: 'wiremock', version: '1.55'
}
test {
testLogging {
exceptionFormat 'full'
events 'passed', 'skipped', 'failed', 'standard_error'
}
}
task wrapper(type: Wrapper) {
gradleVersion = '2.4'
}