41 lines
1.7 KiB
Groovy
41 lines
1.7 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.docker-test"
|
|
id "org.springframework.boot.optional-dependencies"
|
|
}
|
|
|
|
description = "Spring Boot Hazelcast"
|
|
|
|
dependencies {
|
|
api(project(":spring-boot-project:spring-boot"))
|
|
api("com.hazelcast:hazelcast")
|
|
|
|
compileOnly("com.fasterxml.jackson.core:jackson-annotations")
|
|
|
|
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-hibernate"))
|
|
optional(project(":spring-boot-project:spring-boot-testcontainers"))
|
|
optional("com.hazelcast:hazelcast-spring")
|
|
optional("org.slf4j:slf4j-api")
|
|
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-test"))
|
|
dockerTestImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support-docker"))
|
|
dockerTestImplementation(testFixtures(project(":spring-boot-project:spring-boot-docker-compose")))
|
|
dockerTestImplementation("org.testcontainers:junit-jupiter")
|
|
|
|
testCompileOnly("com.fasterxml.jackson.core:jackson-annotations")
|
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-hibernate"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-test"))
|
|
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
|
testImplementation(testFixtures(project(":spring-boot-project:spring-boot-testcontainers")))
|
|
|
|
testRuntimeOnly("com.h2database:h2")
|
|
testRuntimeOnly("ch.qos.logback:logback-classic")
|
|
}
|