-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
40 lines (32 loc) · 920 Bytes
/
build.gradle
File metadata and controls
40 lines (32 loc) · 920 Bytes
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
plugins {
id 'java'
id 'eclipse'
id 'idea'
id 'org.springframework.boot' version '2.1.5.RELEASE'
id 'io.spring.dependency-management' version '1.0.7.RELEASE'
id 'jacoco'
}
group = 'pl.peterdev'
version = '0.0.2-SNAPSHOT'
sourceCompatibility = 11
targetCompatibility = 11
repositories {
mavenCentral()
}
dependencies {
implementation('org.springframework.boot:spring-boot-starter-web')
implementation('org.javamoney:moneta:1.3')
implementation('org.zalando:jackson-datatype-money:1.1.1')
compileOnly 'org.projectlombok:lombok:1.18.8'
annotationProcessor 'org.projectlombok:lombok:1.18.8'
testImplementation('org.springframework.boot:spring-boot-starter-test')
testImplementation('org.junit.jupiter:junit-jupiter-api:5.1.1')
testRuntimeOnly('org.junit.jupiter:junit-jupiter-engine:5.1.1')
}
test {
useJUnitPlatform()
}
jacoco {
toolVersion = "0.8.3"
reportsDir = file("$buildDir/jacocoReport")
}