You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
861 B
Groovy
24 lines
861 B
Groovy
plugins {
|
|
id "java"
|
|
id "org.springframework.boot.conventions"
|
|
}
|
|
|
|
description = "Spring Boot Atomikos JTA smoke test"
|
|
|
|
dependencies {
|
|
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-artemis")
|
|
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-data-jpa")
|
|
implementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jta-atomikos")
|
|
if (JavaVersion.current().java9Compatible) {
|
|
implementation "jakarta.xml.bind:jakarta.xml.bind-api"
|
|
}
|
|
implementation "org.springframework:spring-jms"
|
|
|
|
runtimeOnly "com.h2database:h2"
|
|
runtimeOnly ("org.apache.activemq:artemis-jms-server") {
|
|
exclude group: "org.apache.geronimo.specs", module: "geronimo-jms_2.0_spec"
|
|
}
|
|
|
|
testImplementation project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test")
|
|
}
|