2023-04-07 22:33:48 +08:00
|
|
|
plugins {
|
2024-06-26 18:10:16 +08:00
|
|
|
id "java-library"
|
2023-04-07 22:33:48 +08:00
|
|
|
id "org.springframework.boot.configuration-properties"
|
|
|
|
id "org.springframework.boot.deployed"
|
2024-06-25 18:32:53 +08:00
|
|
|
id "org.springframework.boot.docker-test"
|
2024-06-26 18:10:16 +08:00
|
|
|
id "org.springframework.boot.optional-dependencies"
|
2023-04-07 22:33:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
description = "Spring Boot Docker Compose Support"
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api(project(":spring-boot-project:spring-boot"))
|
|
|
|
|
2024-06-26 18:10:16 +08:00
|
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support-docker"))
|
2024-09-23 00:10:30 +08:00
|
|
|
dockerTestImplementation("com.hazelcast:hazelcast")
|
2024-08-22 04:02:38 +08:00
|
|
|
dockerTestImplementation("com.redis:testcontainers-redis")
|
2024-06-25 18:32:53 +08:00
|
|
|
dockerTestImplementation("org.assertj:assertj-core")
|
|
|
|
dockerTestImplementation("org.awaitility:awaitility")
|
|
|
|
dockerTestImplementation("org.junit.jupiter:junit-jupiter")
|
|
|
|
dockerTestImplementation("org.testcontainers:testcontainers")
|
2024-08-22 04:02:38 +08:00
|
|
|
|
2024-10-23 19:55:19 +08:00
|
|
|
dockerTestRuntimeOnly("com.clickhouse:clickhouse-jdbc")
|
|
|
|
dockerTestRuntimeOnly("com.clickhouse:clickhouse-r2dbc")
|
2024-06-25 18:32:53 +08:00
|
|
|
dockerTestRuntimeOnly("com.microsoft.sqlserver:mssql-jdbc")
|
|
|
|
dockerTestRuntimeOnly("com.oracle.database.r2dbc:oracle-r2dbc")
|
|
|
|
dockerTestRuntimeOnly("io.r2dbc:r2dbc-mssql")
|
2024-07-17 02:16:59 +08:00
|
|
|
dockerTestRuntimeOnly("org.postgresql:postgresql")
|
|
|
|
dockerTestRuntimeOnly("org.postgresql:r2dbc-postgresql")
|
2024-06-26 18:10:16 +08:00
|
|
|
|
2023-04-07 22:33:48 +08:00
|
|
|
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"))
|
2024-09-26 20:30:42 +08:00
|
|
|
optional("com.hazelcast:hazelcast")
|
2023-04-07 22:33:48 +08:00
|
|
|
optional("io.r2dbc:r2dbc-spi")
|
|
|
|
optional("org.mongodb:mongodb-driver-core")
|
2023-09-14 20:23:59 +08:00
|
|
|
optional("org.neo4j.driver:neo4j-java-driver")
|
2023-04-07 22:33:48 +08:00
|
|
|
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")
|
2023-05-05 00:05:20 +08:00
|
|
|
testImplementation("org.assertj:assertj-core")
|
2023-04-07 22:33:48 +08:00
|
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
2023-05-05 00:05:20 +08:00
|
|
|
testImplementation("org.mockito:mockito-core")
|
|
|
|
testImplementation("org.springframework:spring-core-test")
|
|
|
|
testImplementation("org.springframework:spring-test")
|
2023-04-07 22:33:48 +08:00
|
|
|
}
|