Browse Source

更新springboot版本1.5.10.RELEASE,添加分布式事务支持jta+atomikos

NorthLan 7 years ago
parent
commit
90ac443c00
1 changed files with 2 additions and 1 deletions
  1. 2 1
      build.gradle

+ 2 - 1
build.gradle

@@ -5,7 +5,7 @@ buildscript {
     ext {
         kotlin_version = '1.2.21'
 
-        spring_boot_version = '1.5.9.RELEASE'
+        spring_boot_version = '1.5.10.RELEASE'
 
         junit_version = '4.12'
 
@@ -69,6 +69,7 @@ subprojects {
         compile('org.springframework.boot:spring-boot-starter-web')
         compile('org.springframework.boot:spring-boot-starter-aop')
         compile('org.springframework.boot:spring-boot-starter-amqp')
+        compile('org.springframework.boot:spring-boot-starter-jta-atomikos')
         testCompile('org.springframework.boot:spring-boot-starter-test')
 
         testCompile("junit:junit:$junit_version")