34 lines
1.4 KiB
Groovy
34 lines
1.4 KiB
Groovy
plugins {
|
|
id "java-library"
|
|
id "org.springframework.boot.auto-configuration"
|
|
id "org.springframework.boot.configuration-properties"
|
|
id "org.springframework.boot.deployed"
|
|
id "org.springframework.boot.optional-dependencies"
|
|
}
|
|
|
|
description = "Spring Boot Jackson"
|
|
|
|
dependencies {
|
|
api(project(":spring-boot-project:spring-boot"))
|
|
api("com.fasterxml.jackson.core:jackson-databind")
|
|
|
|
implementation("org.springframework:spring-web")
|
|
|
|
optional(project(":spring-boot-project:spring-boot-autoconfigure"))
|
|
optional("com.fasterxml.jackson.dataformat:jackson-dataformat-cbor")
|
|
optional("com.fasterxml.jackson.dataformat:jackson-dataformat-xml")
|
|
optional("com.fasterxml.jackson.datatype:jackson-datatype-jsr310")
|
|
optional("com.fasterxml.jackson.module:jackson-module-jakarta-xmlbind-annotations")
|
|
optional("com.fasterxml.jackson.module:jackson-module-parameter-names")
|
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-test"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
|
testImplementation("org.assertj:assertj-core")
|
|
testImplementation("org.awaitility:awaitility")
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
testImplementation("org.mockito:mockito-core")
|
|
testImplementation("org.mockito:mockito-junit-jupiter")
|
|
testImplementation("org.springframework:spring-core-test")
|
|
|
|
testRuntimeOnly("ch.qos.logback:logback-classic")
|
|
} |