-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
32 lines (27 loc) · 901 Bytes
/
build.gradle.kts
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
plugins {
kotlin("jvm") version "1.9.0"
java
}
group = "io.jhegarty14"
repositories {
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
implementation("org.apache.kafka:kafka-clients:3.6.1")
implementation("org.apache.kafka:connect-api:3.6.1")
implementation("com.amazonaws:amazon-kinesis-client:1.15.1")
implementation("com.amazonaws:dynamodb-streams-kinesis-adapter:1.6.0")
implementation("com.amazonaws:aws-java-sdk-sts:1.12.669")
implementation("com.amazonaws:aws-java-sdk-resourcegroupstaggingapi:1.12.669")
implementation("com.google.code.gson:gson:2.10.1")
implementation("org.apache.logging.log4j:log4j-api:2.23.0")
implementation("org.apache.logging.log4j:log4j-core:2.23.0")
implementation("org.apache.logging.log4j:log4j-slf4j-impl:2.23.0")
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(8)
}