-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
33 lines (29 loc) · 1.06 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
plugins {
id 'java'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
url 'https://packages.confluent.io/maven/'
}
maven {
url 'https://repository.mulesoft.org/nexus/content/repositories/public/'
}
}
dependencies {
implementation 'org.apache.kafka:kafka-streams:3.2.3'
implementation 'org.apache.kafka:kafka-clients:3.2.3'
implementation group: 'io.confluent', name: 'kafka-json-schema-serializer', version: '7.2.2'
implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.15.0'
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.15.0'
implementation group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.15.0'
testImplementation 'org.apache.kafka:kafka-streams-test-utils:3.2.3'
testImplementation 'org.assertj:assertj-core:3.11.1'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
}
test {
useJUnitPlatform()
}