50 lines
2.1 KiB
Groovy
50 lines
2.1 KiB
Groovy
plugins {
|
|
id "java-library"
|
|
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 Docker Compose Support"
|
|
|
|
dependencies {
|
|
api(project(":spring-boot-project:spring-boot"))
|
|
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support-docker"))
|
|
dockerTestImplementation("com.hazelcast:hazelcast")
|
|
dockerTestImplementation("com.redis:testcontainers-redis")
|
|
dockerTestImplementation("org.assertj:assertj-core")
|
|
dockerTestImplementation("org.awaitility:awaitility")
|
|
dockerTestImplementation("org.junit.jupiter:junit-jupiter")
|
|
dockerTestImplementation("org.testcontainers:testcontainers")
|
|
|
|
dockerTestRuntimeOnly("com.clickhouse:clickhouse-jdbc")
|
|
dockerTestRuntimeOnly("com.clickhouse:clickhouse-r2dbc")
|
|
dockerTestRuntimeOnly("com.microsoft.sqlserver:mssql-jdbc")
|
|
dockerTestRuntimeOnly("com.oracle.database.r2dbc:oracle-r2dbc")
|
|
dockerTestRuntimeOnly("io.r2dbc:r2dbc-mssql")
|
|
dockerTestRuntimeOnly("org.postgresql:postgresql")
|
|
dockerTestRuntimeOnly("org.postgresql:r2dbc-postgresql")
|
|
|
|
implementation("com.fasterxml.jackson.core:jackson-databind")
|
|
implementation("com.fasterxml.jackson.module:jackson-module-parameter-names")
|
|
|
|
optional(project(":spring-boot-project:spring-boot-autoconfigure"))
|
|
optional(project(":spring-boot-project:spring-boot-actuator-autoconfigure"))
|
|
optional("com.hazelcast:hazelcast")
|
|
optional("io.r2dbc:r2dbc-spi")
|
|
optional("org.mongodb:mongodb-driver-core")
|
|
optional("org.neo4j.driver:neo4j-java-driver")
|
|
optional("org.springframework.data:spring-data-r2dbc")
|
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-test"))
|
|
testImplementation("ch.qos.logback:logback-classic")
|
|
testImplementation("org.assertj:assertj-core")
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
testImplementation("org.mockito:mockito-core")
|
|
testImplementation("org.springframework:spring-core-test")
|
|
testImplementation("org.springframework:spring-test")
|
|
}
|