-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.gradle
32 lines (26 loc) · 852 Bytes
/
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
buildscript {
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:6.1.0'
}
}
plugins {
id 'java'
id 'scala'
id 'com.github.johnrengelman.shadow' version '8.1.1'
}
repositories {
mavenLocal()
jcenter()
mavenCentral()
}
dependencies {
compile group: 'org.apache.kafka', name: 'kafka-clients', version: '3.9.0'
compile group: 'org.apache.kafka', name: 'kafka-streams', version: '3.9.0'
compile group: 'org.slf4j', name: 'slf4j-api', version: '2.0.16'
compile group: 'org.slf4j', name: 'slf4j-log4j12', version: '2.0.16'
compile 'com.google.code.gson:gson:2.11.0'
testCompile 'org.scala-lang:scala-library:2.13.15'
testCompile 'org.scalatest:scalatest_2.11:3.3.0-SNAP4'
testCompile 'org.apache.kafka:kafka-streams-test-utils:3.9.0'
testCompile group: 'junit', name: 'junit', version: '4.13.2'
}