
This paves the way for publishing Gradle module metadata once the problem caused by snapshot versions and our two-step publication process has been addressed. See gh-19609
15 lines
443 B
Groovy
15 lines
443 B
Groovy
plugins {
|
|
id 'org.springframework.boot.starter'
|
|
}
|
|
|
|
description = "Starter for JTA transactions using Atomikos"
|
|
|
|
dependencies {
|
|
api platform(project(':spring-boot-project:spring-boot-dependencies'))
|
|
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
|
api 'com.atomikos:transactions-jms'
|
|
api 'com.atomikos:transactions-jta'
|
|
api 'com.atomikos:transactions-jdbc'
|
|
api 'jakarta.transaction:jakarta.transaction-api'
|
|
}
|