You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
plugins {
|
|
|
|
id "java-library"
|
|
|
|
id "org.springframework.boot.configuration-properties"
|
|
|
|
id "org.springframework.boot.conventions"
|
|
|
|
id "org.springframework.boot.deployed"
|
|
|
|
id "org.springframework.boot.optional-dependencies"
|
|
|
|
}
|
|
|
|
|
|
|
|
description = "Spring Boot Docker Compose Support"
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api(project(":spring-boot-project:spring-boot"))
|
|
|
|
|
|
|
|
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.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("org.springframework:spring-core-test")
|
|
|
|
testImplementation("org.springframework:spring-test")
|
|
|
|
testImplementation("org.assertj:assertj-core")
|
|
|
|
testImplementation("org.mockito:mockito-core")
|
|
|
|
testImplementation("ch.qos.logback:logback-classic")
|
|
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
|
|
|
|
|
|
testRuntimeOnly("com.microsoft.sqlserver:mssql-jdbc")
|
|
|
|
testRuntimeOnly("com.oracle.database.r2dbc:oracle-r2dbc")
|
|
|
|
testRuntimeOnly("io.r2dbc:r2dbc-mssql")
|
|
|
|
}
|