-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
61 lines (48 loc) · 1.62 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 'java'
}
apply plugin: 'java'
repositories {
mavenCentral()
}
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
test {
useJUnitPlatform()
testLogging {
exceptionFormat = 'full'
outputs.upToDateWhen { false }
showStandardStreams = true
}
}
ext {
kafkastreamsVersion = '2.2.0'
junitVersion = '5.3.1'
slf4jVersion = '1.7.25'
micrometerVersion = '1.1.3'
logbackVersion = '1.1.11'
jacksonVersion = '2.9.8'
commonsIoVersion = '2.6'
javaxValidationVersion = '2.0.1.Final'
hiveVersion = '2.7.0'
}
dependencies {
implementation "org.apache.kafka:kafka-streams:${kafkastreamsVersion}"
implementation "javax.validation:validation-api:${javaxValidationVersion}"
implementation "commons-io:commons-io:${commonsIoVersion}"
// we use only for their murmur3 hash implementation
implementation "org.apache.hive:hive-storage-api:${hiveVersion}"
// jackson
implementation "com.fasterxml.jackson.core:jackson-core:${jacksonVersion}"
implementation "com.fasterxml.jackson.core:jackson-annotations:${jacksonVersion}"
implementation "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}"
// logging
implementation "org.slf4j:slf4j-api:${slf4jVersion}"
implementation "ch.qos.logback:logback-classic:${logbackVersion}"
// monitoring
implementation "io.micrometer:micrometer-registry-prometheus:${micrometerVersion}"
// testing
testImplementation "org.apache.kafka:kafka-streams-test-utils:${kafkastreamsVersion}"
testImplementation "org.junit.jupiter:junit-jupiter-api:${junitVersion}"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junitVersion}"
}