-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle.kts
44 lines (42 loc) · 1.58 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
import io.floodplain.build.FloodplainDeps
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm") version "1.8.20"
}
dependencies {
implementation(project(":immutable-api"))
implementation(project(":immutable-impl"))
implementation(project(":replication-api"))
implementation(project(":replication-impl"))
implementation(project(":replication-json"))
implementation(project(":replication-protobuf"))
implementation(project(":streams"))
implementation(project(":streams-api"))
implementation(project(":floodplain-stream-topology"))
implementation(project(":floodplain-debezium"))
implementation(project(":floodplain-direct"))
implementation(project(":floodplain-api"))
testImplementation(project(":floodplain-test"))
implementation(FloodplainDeps.slf4j)
implementation(FloodplainDeps.kafkaStreams)
implementation(FloodplainDeps.kotlinLogging)
implementation(FloodplainDeps.debeziumPostgres)
implementation(FloodplainDeps.debeziumMySQL)
implementation(FloodplainDeps.debeziumEmbedded)
implementation(FloodplainDeps.jacksonDatabind310)
implementation(FloodplainDeps.kafkaConnectRuntime)
implementation(FloodplainDeps.kotlinCoroutines)
testImplementation("org.junit.jupiter:junit-jupiter:${FloodplainDeps.junit_5_version}")
implementation(kotlin("stdlib-jdk8"))
}
repositories {
mavenCentral()
}
val compileKotlin: KotlinCompile by tasks
compileKotlin.kotlinOptions {
jvmTarget = "17"
}
val compileTestKotlin: KotlinCompile by tasks
compileTestKotlin.kotlinOptions {
jvmTarget = "17"
}