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.
|
|
|
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"))
|
|
|
|
implementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
|
|
|
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: "commons-logging", module: "commons-logging"
|
|
|
|
exclude group: "org.apache.geronimo.specs", module: "geronimo-jms_2.0_spec"
|
|
|
|
exclude group: "org.apache.geronimo.specs", module: "geronimo-json_1.0_spec"
|
|
|
|
exclude group: "org.apache.geronimo.specs", module: "geronimo-jta_1.1_spec"
|
|
|
|
}
|
|
|
|
|
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
|
|
|
}
|