Skip to content

Commit e116092

Browse files
Josh Longphilwebb
Josh Long
authored andcommitted
Add Atomikos and Bitronix starter POMs
Add starters for Atomikos and Bitronix JTA libraries. See spring-projectsgh-947
1 parent da88bb4 commit e116092

File tree

4 files changed

+94
-0
lines changed

4 files changed

+94
-0
lines changed

spring-boot-dependencies/pom.xml

+15
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,21 @@
260260
<artifactId>spring-boot-starter-jetty</artifactId>
261261
<version>1.2.0.BUILD-SNAPSHOT</version>
262262
</dependency>
263+
<dependency>
264+
<groupId>org.springframework.boot</groupId>
265+
<artifactId>spring-boot-starter-jta-atomikos</artifactId>
266+
<version>1.2.0.BUILD-SNAPSHOT</version>
267+
</dependency>
268+
<dependency>
269+
<groupId>org.springframework.boot</groupId>
270+
<artifactId>spring-boot-starter-jta-bitronix</artifactId>
271+
<version>1.2.0.BUILD-SNAPSHOT</version>
272+
</dependency>
273+
<dependency>
274+
<groupId>org.springframework.boot</groupId>
275+
<artifactId>spring-boot-starter-jta-arjuna</artifactId>
276+
<version>1.2.0.BUILD-SNAPSHOT</version>
277+
</dependency>
263278
<dependency>
264279
<groupId>org.springframework.boot</groupId>
265280
<artifactId>spring-boot-starter-log4j</artifactId>

spring-boot-starters/pom.xml

+2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@
3636
<module>spring-boot-starter-integration</module>
3737
<module>spring-boot-starter-jdbc</module>
3838
<module>spring-boot-starter-jetty</module>
39+
<module>spring-boot-starter-jta-atomikos</module>
40+
<module>spring-boot-starter-jta-bitronix</module>
3941
<module>spring-boot-starter-logging</module>
4042
<module>spring-boot-starter-log4j</module>
4143
<module>spring-boot-starter-mobile</module>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<parent>
5+
<groupId>org.springframework.boot</groupId>
6+
<artifactId>spring-boot-starters</artifactId>
7+
<version>1.2.0.BUILD-SNAPSHOT</version>
8+
</parent>
9+
<artifactId>spring-boot-starter-jta-atomikos</artifactId>
10+
<name>Spring Boot Atomikos JTA Starter</name>
11+
<description>Spring Boot Atomikos JTA Starter</description>
12+
<url>http://projects.spring.io/spring-boot/</url>
13+
<organization>
14+
<name>Pivotal Software, Inc.</name>
15+
<url>http://www.spring.io</url>
16+
</organization>
17+
<properties>
18+
<main.basedir>${basedir}/../..</main.basedir>
19+
</properties>
20+
<dependencies>
21+
<dependency>
22+
<groupId>org.springframework.boot</groupId>
23+
<artifactId>spring-boot-starter</artifactId>
24+
</dependency>
25+
<dependency>
26+
<groupId>com.atomikos</groupId>
27+
<artifactId>transactions-jms</artifactId>
28+
</dependency>
29+
<dependency>
30+
<groupId>com.atomikos</groupId>
31+
<artifactId>transactions-jta</artifactId>
32+
</dependency>
33+
<dependency>
34+
<groupId>com.atomikos</groupId>
35+
<artifactId>transactions-jdbc</artifactId>
36+
</dependency>
37+
</dependencies>
38+
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<parent>
6+
<groupId>org.springframework.boot</groupId>
7+
<artifactId>spring-boot-starters</artifactId>
8+
<version>1.2.0.BUILD-SNAPSHOT</version>
9+
</parent>
10+
<artifactId>spring-boot-starter-jta-bitronix</artifactId>
11+
<name>Spring Boot Bitronix JTA Starter</name>
12+
<description>Spring Boot Bitronix JTA Starter</description>
13+
<url>http://projects.spring.io/spring-boot/</url>
14+
<organization>
15+
<name>Pivotal Software, Inc.</name>
16+
<url>http://www.spring.io</url>
17+
</organization>
18+
<properties>
19+
<main.basedir>${basedir}/../..</main.basedir>
20+
</properties>
21+
<dependencies>
22+
<dependency>
23+
<groupId>javax.jms</groupId>
24+
<artifactId>jms-api</artifactId>
25+
</dependency>
26+
<dependency>
27+
<groupId>javax.transaction</groupId>
28+
<artifactId>jta</artifactId>
29+
</dependency>
30+
<dependency>
31+
<groupId>org.codehaus.btm</groupId>
32+
<artifactId>btm</artifactId>
33+
</dependency>
34+
<dependency>
35+
<groupId>org.springframework.boot</groupId>
36+
<artifactId>spring-boot-starter</artifactId>
37+
</dependency>
38+
</dependencies>
39+
</project>

0 commit comments

Comments
 (0)