-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
61 lines (48 loc) · 1.23 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.5.6'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'codeministry'
version = '0.1.0'
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
implementation 'com.opencsv:opencsv:5.5'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.5'
implementation 'org.springframework.boot:spring-boot-starter-web:2.5.4'
compileOnly 'org.projectlombok:lombok:1.18.20'
annotationProcessor 'org.projectlombok:lombok:1.18.20'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.20'
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.5.4'
}
test {
useJUnitPlatform()
failFast = true
testLogging.showCauses(true)
testLogging.showExceptions(true)
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
compileJava {
options.compilerArgs = [
'-Amapstruct.unmappedTargetPolicy=ERROR'
]
}
jar {
archiveFileName = "toggl-to-jira.jar"
}