forked from jade-nguyen/spring-cloud-developer-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
42 lines (33 loc) · 772 Bytes
/
Copy pathbuild.gradle
File metadata and controls
42 lines (33 loc) · 772 Bytes
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
buildscript {
ext {
springBootVersion = "1.5.9.RELEASE"
springVersion = "4.3.13.RELEASE"
jacksonVersion ="2.9.3"
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"
}
}
subprojects {
group "io.pivotal.pal.tracker"
apply plugin: "java"
defaultTasks "clean", "build"
repositories {
mavenCentral()
jcenter()
}
dependencies {
testCompile "junit:junit:4.12"
testCompile "org.mockito:mockito-core:2.13.0"
testCompile "org.assertj:assertj-core:3.9.0"
}
test {
testLogging {
exceptionFormat = 'full'
}
}
}