-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathbuild.gradle.kts
34 lines (27 loc) · 1.19 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
plugins {
id("org.springframework.boot")
id("io.spring.dependency-management")
kotlin("jvm")
kotlin("plugin.spring")
kotlin("kapt")
id("org.jetbrains.dokka")
}
group = "com.qingzhu"
version = "1.0.0-SNAPSHOT"
dependencies {
implementation(project(":common"))
implementation("org.apache.kafka:kafka-streams")
implementation("org.springframework.cloud:spring-cloud-stream")
implementation("org.springframework.cloud:spring-cloud-stream-binder-kafka")
implementation("org.springframework.cloud:spring-cloud-stream-binder-kafka-streams")
implementation("org.springframework.boot:spring-boot-starter-data-redis")
implementation("org.springframework.data:spring-data-elasticsearch")
implementation("org.springframework.boot:spring-boot-starter-data-elasticsearch")
implementation("org.springframework.boot:spring-boot-starter-data-cassandra-reactive")
implementation("com.hazelcast:hazelcast-all:4.2.1")
/** k8s 依赖 **/
implementation("com.hazelcast:hazelcast-kubernetes:2.2")
testImplementation("org.springframework.boot:spring-boot-starter-test") {
exclude(group = "org.junit.vintage", module = "junit-vintage-engine")
}
}