-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
66 lines (55 loc) · 2.27 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
66
plugins {
id 'org.springframework.boot' version '2.6.6'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
id 'idea'
id 'jacoco'
id 'io.freefair.lombok' version '6.4.1'
}
repositories {
mavenCentral()
maven {
url "https://github.com/stil4m/maven-repository/raw/master/releases/"
}
}
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
dependencies {
// Some dependency versions are managed by Spring Boot, refer to
// https://docs.spring.io/spring-boot/docs/current/reference/html/appendix-dependency-versions.html
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-mail'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-logging'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-json'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-aop'
// DONT UPGRADE TO 8+, NO SUPPORT FOR POSTGRES 9.6
implementation 'org.flywaydb:flyway-core:7.15.0'
implementation 'com.google.guava:guava:31.1-jre'
implementation 'nl.stil4m:mollie-api:2.7.0'
implementation 'net.logstash.logback:logstash-logback-encoder:7.0.1'
runtimeOnly 'org.hsqldb:hsqldb'
runtimeOnly 'org.postgresql:postgresql'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
// rest-assured 4.3+ ships with Groovy 3.0, which doesn't play nice with Gradle (yet)
testImplementation 'io.rest-assured:rest-assured:4.5.1'
testImplementation 'io.rest-assured:json-path:4.5.1'
testImplementation 'io.rest-assured:xml-path:4.5.1'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
}
jacocoTestReport {
reports {
xml.required = true
html.required = false
}
}
test {
useJUnitPlatform()
}
check.dependsOn jacocoTestReport