You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.8 KiB
42 lines
1.8 KiB
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("org.assertj:assertj-core") |
|
dockerTestImplementation("org.awaitility:awaitility") |
|
dockerTestImplementation("org.junit.jupiter:junit-jupiter") |
|
dockerTestImplementation("org.testcontainers:testcontainers") |
|
|
|
dockerTestRuntimeOnly("com.microsoft.sqlserver:mssql-jdbc") |
|
dockerTestRuntimeOnly("com.oracle.database.r2dbc:oracle-r2dbc") |
|
dockerTestRuntimeOnly("io.r2dbc:r2dbc-mssql") |
|
|
|
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("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") |
|
}
|
|
|