-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
64 lines (54 loc) · 1.78 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import io.pivotal.pal.tracker.gradlebuild.DependenciesGraphPlugin
buildscript {
ext {
springBootVersion = "2.1.13.RELEASE"
springVersion = "5.1.14.RELEASE"
mysqlVersion = "8.0.13"
jacksonVersion = "2.9.7"
slf4jVersion = "1.7.25"
mockitoVersion = "2.23.0"
assertJVersion = "3.11.1"
hikariVersion = "3.1.0"
logbackVersion = "1.2.3"
junitVersion = "4.12"
okhttpVersion = "3.12.0"
jsonPathVersion = "2.4.0"
springCloudVersion = "Greenwich.SR5"
springCloudServicesClientLibrariesVersion = "2.1.7.RELEASE"
springCloudCommonsVersion = "2.1.5.RELEASE"
springSecurityOAuthAutoconfigVersion = "2.1.0.RELEASE"
springCloudSsoVersion = "2.1.3.RELEASE"
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion"
classpath "mysql:mysql-connector-java:$mysqlVersion"
}
}
apply plugin: DependenciesGraphPlugin
subprojects {
group "io.pivotal.pal.tracker"
apply plugin: "java"
defaultTasks "clean", "build"
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile "com.fasterxml.jackson.core:jackson-core:$jacksonVersion"
compile "com.fasterxml.jackson.core:jackson-databind:$jacksonVersion"
compile "com.fasterxml.jackson.core:jackson-annotations:$jacksonVersion"
compile "org.slf4j:slf4j-api:$slf4jVersion"
testCompile "junit:junit:$junitVersion"
testCompile "org.mockito:mockito-core:$mockitoVersion"
testCompile "org.assertj:assertj-core:$assertJVersion"
}
test {
testLogging {
exceptionFormat = 'full'
}
}
}