File tree 4 files changed +94
-0
lines changed
spring-boot-starter-jta-atomikos
spring-boot-starter-jta-bitronix
4 files changed +94
-0
lines changed Original file line number Diff line number Diff line change 260
260
<artifactId >spring-boot-starter-jetty</artifactId >
261
261
<version >1.2.0.BUILD-SNAPSHOT</version >
262
262
</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 >
263
278
<dependency >
264
279
<groupId >org.springframework.boot</groupId >
265
280
<artifactId >spring-boot-starter-log4j</artifactId >
Original file line number Diff line number Diff line change 36
36
<module >spring-boot-starter-integration</module >
37
37
<module >spring-boot-starter-jdbc</module >
38
38
<module >spring-boot-starter-jetty</module >
39
+ <module >spring-boot-starter-jta-atomikos</module >
40
+ <module >spring-boot-starter-jta-bitronix</module >
39
41
<module >spring-boot-starter-logging</module >
40
42
<module >spring-boot-starter-log4j</module >
41
43
<module >spring-boot-starter-mobile</module >
Original file line number Diff line number Diff line change
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 number Diff line number Diff line change
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 >
You can’t perform that action at this time.
0 commit comments