30 lines
1.2 KiB
Groovy
30 lines
1.2 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 Integration"
|
|
|
|
dependencies {
|
|
api(project(":spring-boot-project:spring-boot"))
|
|
api("org.springframework.integration:spring-integration-core")
|
|
|
|
optional(project(":spring-boot-project:spring-boot-autoconfigure"))
|
|
optional(project(":spring-boot-project:spring-boot-jdbc"))
|
|
optional("org.springframework.integration:spring-integration-jdbc")
|
|
optional("org.springframework.integration:spring-integration-jmx")
|
|
optional("org.springframework.integration:spring-integration-rsocket")
|
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-flyway"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-rsocket"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-test"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
|
|
|
testRuntimeOnly(project(":spring-boot-project:spring-boot-reactor-netty"))
|
|
testRuntimeOnly("ch.qos.logback:logback-classic")
|
|
testRuntimeOnly("com.h2database:h2")
|
|
testRuntimeOnly("com.zaxxer:HikariCP")
|
|
} |