-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
65 lines (55 loc) · 1.75 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
65
buildscript {
ext {
mockitoCoreVersion = "2.23.4"
httpClientVersion = "4.5.6"
}
}
plugins {
id "java"
id "idea"
id "eclipse"
id "jacoco"
id "io.spring.dependency-management" version "1.0.6.RELEASE"
id "org.springframework.boot" version "2.0.2.RELEASE"
id "com.github.ksoichiro.console.reporter" version "0.5.0"
id "io.franzbecker.gradle-lombok" version "1.14"
}
group = "com.crossover"
version = "0.0.1-SNAPSHOT"
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
configurations {
developmentOnly
runtimeClasspath {
extendsFrom developmentOnly
}
}
dependencies {
compile("org.springframework.boot:spring-boot-starter")
compile("org.springframework.boot:spring-boot-starter-aop")
compile("org.springframework.boot:spring-boot-starter-data-jpa")
compile("org.springframework.boot:spring-boot-starter-data-rest")
compile("org.springframework.boot:spring-boot-starter-web")
compile("com.fasterxml.jackson.datatype:jackson-datatype-jsr310")
compile("org.liquibase:liquibase-core")
compile("mysql:mysql-connector-java")
developmentOnly("org.springframework.boot:spring-boot-devtools")
testCompile("com.h2database:h2")
testCompile("org.springframework.boot:spring-boot-starter-test")
testCompile("org.mockito:mockito-core:${mockitoCoreVersion}")
testCompile("org.apache.httpcomponents:httpclient:${httpClientVersion}")
}
lombok {
version = "1.18.4"
sha256 = ""
}
jacocoTestReport {
afterEvaluate {
classDirectories = files(classDirectories.files.collect {
fileTree(dir: it, exclude: ["com/crossover/techtrial/dto/**",
"com/crossover/techtrial/model/**"])
})
}
}