2020-01-10 21:48:43 +08:00
|
|
|
plugins {
|
2020-01-23 03:24:37 +08:00
|
|
|
id "java"
|
|
|
|
id "org.springframework.boot.conventions"
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|
|
|
|
|
2020-01-23 03:24:37 +08:00
|
|
|
description = "Spring Boot Bitronix JTA smoke test"
|
2020-01-10 21:48:43 +08:00
|
|
|
|
|
|
|
dependencies {
|
2020-01-23 06:09:17 +08:00
|
|
|
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-bitronix"))
|
2020-01-10 21:48:43 +08:00
|
|
|
if (JavaVersion.current().java9Compatible) {
|
2020-01-23 06:09:17 +08:00
|
|
|
implementation("jakarta.xml.bind:jakarta.xml.bind-api")
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|
2020-01-23 06:09:17 +08:00
|
|
|
implementation("org.springframework:spring-jms")
|
2020-01-14 04:06:35 +08:00
|
|
|
|
2020-01-23 06:09:17 +08:00
|
|
|
runtimeOnly("com.h2database:h2")
|
|
|
|
runtimeOnly("org.apache.activemq:artemis-jms-server") {
|
2020-01-23 03:24:37 +08:00
|
|
|
exclude group: "org.apache.geronimo.specs", module: "geronimo-jms_2.0_spec"
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|
2020-01-14 04:06:35 +08:00
|
|
|
|
2020-01-23 06:09:17 +08:00
|
|
|
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))
|
2020-01-10 21:48:43 +08:00
|
|
|
}
|