26 lines
960 B
Groovy
26 lines
960 B
Groovy
plugins {
|
|
id "java-library"
|
|
id "java-test-fixtures"
|
|
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"
|
|
|
|
dependencies {
|
|
api(project(":spring-boot-project:spring-boot-autoconfigure"))
|
|
|
|
implementation("com.fasterxml.jackson.core:jackson-databind")
|
|
implementation("com.fasterxml.jackson.module:jackson-module-parameter-names")
|
|
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support-docker"))
|
|
|
|
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")
|
|
|
|
testFixturesImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support-docker"))
|
|
}
|