forked from schroedermatt/stream-processing-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
48 lines (39 loc) · 1.47 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
plugins {
id 'java'
id 'groovy'
id 'org.springframework.boot' version '2.7.1'
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
}
group 'org.improving.workshop'
version '1.0-SNAPSHOT'
sourceCompatibility = '17'
repositories {
mavenCentral()
maven {
url "https://packages.confluent.io/maven"
}
maven { url 'https://jitpack.io' }
}
dependencies {
// https://jitpack.io/#schroedermatt/data-demo
implementation 'com.github.schroedermatt.data-demo:mockdata:0.1.0'
implementation 'org.apache.kafka:kafka-clients:7.3.0-ce'
implementation 'org.apache.kafka:kafka-streams:7.3.0-ce'
// included for the Serdes
implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.1'
implementation 'org.springframework.kafka:spring-kafka:3.0.0'
implementation 'net.datafaker:datafaker:1.7.0'
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.slf4j:slf4j-api:2.0.5'
implementation 'org.slf4j:slf4j-simple:2.0.5'
compileOnly 'org.projectlombok:lombok:1.18.24'
annotationProcessor 'org.projectlombok:lombok:1.18.24'
testCompileOnly 'org.projectlombok:lombok:1.18.24'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.24'
testImplementation 'org.apache.kafka:kafka-streams-test-utils:7.3.0-ce'
testImplementation 'org.spockframework:spock-core:2.3-groovy-3.0'
testImplementation 'org.codehaus.groovy:groovy-all:3.0.14'
}
test {
useJUnitPlatform()
}