-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.gradle
61 lines (50 loc) · 1.56 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
plugins {
id 'org.springframework.boot' version '2.1.6.RELEASE'
id 'java'
id "org.sonarqube" version "3.0"
id 'jacoco'
}
apply plugin: 'io.spring.dependency-management'
group = 'com.rabobank'
version = '0.0.1'
sourceCompatibility = '1.8'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'io.springfox:springfox-swagger2:2.9.2'
implementation 'io.springfox:springfox-swagger-ui:2.9.2'
implementation 'org.flywaydb:flyway-core'
runtimeOnly 'com.h2database:h2'
runtimeOnly 'org.postgresql:postgresql'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'pl.pojo:pojo-tester:0.7.6'
testImplementation 'org.testcontainers:testcontainers:1.11.4'
testImplementation 'org.testcontainers:postgresql:1.11.4'
testCompile 'org.projectlombok:lombok'
testAnnotationProcessor 'org.projectlombok:lombok'
}
sonarqube {
properties {
property "sonar.projectKey", "rslvn_bank-account-manager"
property "sonar.organization", "rslvn"
property "sonar.host.url", "https://sonarcloud.io"
}
}
jacocoTestReport {
reports {
xml.enabled true
csv.enabled false
html.enabled false
}
}
test.finalizedBy jacocoTestReport