This repository has been archived by the owner on Mar 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
73 lines (61 loc) · 2.11 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
67
68
69
70
71
72
73
plugins {
id 'java'
id 'io.quarkus'
id 'jacoco'
}
repositories {
mavenLocal()
mavenCentral()
maven {
url 'https://jitpack.io'
}
}
dependencies {
implementation 'io.quarkus:quarkus-picocli'
implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}")
implementation 'info.picocli:picocli-codegen'
implementation 'org.yaml:snakeyaml:1.27'
implementation "io.quarkus:quarkus-kafka-client:${quarkusPlatformVersion}"
implementation 'io.quarkus:quarkus-jsonb'
implementation 'org.apache.commons:commons-lang3:3.11'
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'com.github.everit-org.json-schema:org.everit.json.schema:1.12.2'
testImplementation 'org.testcontainers:kafka:1.15.2'
testImplementation 'io.quarkus:quarkus-junit5'
testImplementation 'org.hamcrest:hamcrest-library:2.2'
testImplementation 'com.jayway.jsonpath:json-path-assert:2.5.0'
testImplementation 'io.quarkus:quarkus-junit5-mockito'
testImplementation 'org.mockito:mockito-inline:3.7.7'
testImplementation 'org.mockito:mockito-junit-jupiter:3.7.7'
annotationProcessor enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}")
annotationProcessor 'info.picocli:picocli-codegen'
implementation 'org.mapstruct:mapstruct:1.4.2.Final'
annotationProcessor 'org.mapstruct:mapstruct-processor:1.4.2.Final'
compileOnly 'org.projectlombok:lombok:1.18.10'
annotationProcessor 'org.projectlombok:lombok:1.18.10'
}
group 'com.github.kattlo'
version '0.2.2'
compileJava {
options.encoding = 'UTF-8'
options.compilerArgs << '-parameters'
}
compileTestJava {
options.encoding = 'UTF-8'
}
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
test {
systemProperty "java.util.logging.manager", "org.jboss.logmanager.LogManager"
useJUnitPlatform()
finalizedBy jacocoTestReport
}
jacocoTestReport {
dependsOn test
reports {
xml.enabled true
csv.enabled true
}
}