42 lines
1.7 KiB
Groovy
42 lines
1.7 KiB
Groovy
plugins {
|
|
id "java-library"
|
|
id "org.springframework.boot.docker-test"
|
|
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 AMQP"
|
|
|
|
dependencies {
|
|
api(project(":spring-boot-project:spring-boot"))
|
|
api("org.springframework:spring-messaging")
|
|
api("org.springframework.amqp:spring-rabbit")
|
|
|
|
compileOnly("com.fasterxml.jackson.core:jackson-annotations")
|
|
|
|
implementation(project(":spring-boot-project:spring-boot-tx"))
|
|
|
|
optional(project(":spring-boot-project:spring-boot-actuator-autoconfigure"))
|
|
optional(project(":spring-boot-project:spring-boot-autoconfigure"))
|
|
optional(project(":spring-boot-project:spring-boot-docker-compose"))
|
|
optional(project(":spring-boot-project:spring-boot-metrics"))
|
|
optional(project(":spring-boot-project:spring-boot-testcontainers"))
|
|
optional("io.micrometer:micrometer-core")
|
|
optional("org.springframework.amqp:spring-rabbit-stream")
|
|
optional("org.testcontainers:rabbitmq")
|
|
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support-docker"))
|
|
dockerTestImplementation(testFixtures(project(":spring-boot-project:spring-boot-docker-compose")))
|
|
dockerTestImplementation("ch.qos.logback:logback-classic")
|
|
dockerTestImplementation("org.testcontainers:junit-jupiter")
|
|
|
|
testCompileOnly("com.fasterxml.jackson.core:jackson-annotations")
|
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-test"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
|
|
|
testRuntimeOnly("ch.qos.logback:logback-classic")
|
|
}
|