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 {
|
2025-03-01 04:54:04 +08:00
|
|
|
api(project(":spring-boot-project:spring-boot-all"))
|
2023-04-07 22:33:48 +08:00
|
|
|
|
2025-03-18 19:11:17 +08:00
|
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-jdbc"))
|
2025-03-21 15:49:18 +08:00
|
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-flyway"))
|
2025-04-12 05:25:07 +08:00
|
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-liquibase"))
|
2025-03-21 01:38:21 +08:00
|
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-pulsar"))
|
2025-03-21 17:14:25 +08:00
|
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-r2dbc"))
|
2024-06-26 18:10:16 +08:00
|
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support-docker"))
|
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")
|
|
|
|
|
2025-03-18 21:28:53 +08:00
|
|
|
optional(project(":spring-boot-project:spring-boot-activemq"))
|
2025-03-15 01:01:17 +08:00
|
|
|
optional(project(":spring-boot-project:spring-boot-amqp"))
|
2025-03-18 22:00:11 +08:00
|
|
|
optional(project(":spring-boot-project:spring-boot-artemis"))
|
2025-03-06 19:44:37 +08:00
|
|
|
optional(project(":spring-boot-project:spring-boot-autoconfigure-all"))
|
2023-04-07 22:33:48 +08:00
|
|
|
optional(project(":spring-boot-project:spring-boot-actuator-autoconfigure"))
|
2025-04-23 17:02:17 +08:00
|
|
|
optional(project(":spring-boot-project:spring-boot-cassandra"))
|
2025-03-20 22:18:23 +08:00
|
|
|
optional(project(":spring-boot-project:spring-boot-elasticsearch"))
|
2025-03-21 15:49:18 +08:00
|
|
|
optional(project(":spring-boot-project:spring-boot-flyway"))
|
2025-03-21 23:27:03 +08:00
|
|
|
optional(project(":spring-boot-project:spring-boot-hazelcast"))
|
2025-03-18 19:11:17 +08:00
|
|
|
optional(project(":spring-boot-project:spring-boot-jdbc"))
|
2025-03-25 16:10:55 +08:00
|
|
|
optional(project(":spring-boot-project:spring-boot-ldap"))
|
2025-04-12 05:25:07 +08:00
|
|
|
optional(project(":spring-boot-project:spring-boot-liquibase"))
|
2025-03-26 20:11:30 +08:00
|
|
|
optional(project(":spring-boot-project:spring-boot-mongodb"))
|
2025-03-24 21:58:18 +08:00
|
|
|
optional(project(":spring-boot-project:spring-boot-neo4j"))
|
2025-03-21 01:38:21 +08:00
|
|
|
optional(project(":spring-boot-project:spring-boot-pulsar"))
|
2025-03-21 17:14:25 +08:00
|
|
|
optional(project(":spring-boot-project:spring-boot-r2dbc"))
|
2024-09-26 20:30:42 +08:00
|
|
|
optional("com.hazelcast:hazelcast")
|
2023-04-07 22:33:48 +08:00
|
|
|
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")
|
|
|
|
}
|