34 lines
1.4 KiB
Groovy
34 lines
1.4 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 Neo4j"
|
|
|
|
dependencies {
|
|
api(project(":spring-boot-project:spring-boot-neo4j"))
|
|
api(project(":spring-boot-project:spring-boot-tx"))
|
|
api("org.springframework.data:spring-data-neo4j")
|
|
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-test"))
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support-docker"))
|
|
dockerTestImplementation("ch.qos.logback:logback-classic")
|
|
dockerTestImplementation("org.junit.jupiter:junit-jupiter")
|
|
dockerTestImplementation("org.testcontainers:neo4j")
|
|
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")))
|
|
testImplementation("io.projectreactor:reactor-test")
|
|
|
|
testRuntimeOnly("ch.qos.logback:logback-classic")
|
|
}
|