33 lines
1.3 KiB
Groovy
33 lines
1.3 KiB
Groovy
|
plugins {
|
||
|
id "java-library"
|
||
|
id "org.springframework.boot.auto-configuration"
|
||
|
id "org.springframework.boot.configuration-properties"
|
||
|
id "org.springframework.boot.deployed"
|
||
|
id "org.springframework.boot.docker-test"
|
||
|
id "org.springframework.boot.optional-dependencies"
|
||
|
}
|
||
|
|
||
|
description = "Spring Boot Data Cassandra"
|
||
|
|
||
|
dependencies {
|
||
|
api(project(":spring-boot-project:spring-boot-cassandra"))
|
||
|
api("org.springframework.data:spring-data-cassandra") {
|
||
|
exclude group: "org.slf4j", module: "jcl-over-slf4j"
|
||
|
}
|
||
|
|
||
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-test"))
|
||
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support-docker"))
|
||
|
dockerTestImplementation("org.junit.jupiter:junit-jupiter")
|
||
|
dockerTestImplementation("org.testcontainers:cassandra")
|
||
|
dockerTestImplementation("org.testcontainers:junit-jupiter")
|
||
|
|
||
|
optional(project(":spring-boot-project:spring-boot-autoconfigure"))
|
||
|
optional("io.projectreactor:reactor-core")
|
||
|
|
||
|
testImplementation(project(":spring-boot-project:spring-boot-test"))
|
||
|
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
||
|
testImplementation(testFixtures(project(":spring-boot-project:spring-boot-autoconfigure")))
|
||
|
|
||
|
testRuntimeOnly("ch.qos.logback:logback-classic")
|
||
|
}
|