forked from vmware-tanzu-learning/pal-tracker-distributed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
44 lines (35 loc) · 1.07 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
import io.pivotal.pal.tracker.gradlebuild.DependenciesGraphPlugin
buildscript {
ext {
springBootVersion = "1.5.3.RELEASE"
springVersion = "4.3.8.RELEASE"
mysqlVersion = "6.0.6"
}
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:2.8.4"
compile "com.fasterxml.jackson.core:jackson-databind:2.8.4"
compile "com.fasterxml.jackson.core:jackson-annotations:2.8.4"
compile "org.slf4j:slf4j-api:1.7.10"
testCompile "junit:junit:4.12"
testCompile "org.mockito:mockito-core:2.2.26"
testCompile "org.assertj:assertj-core:3.8.0"
}
}