diff --git a/libraries.gradle b/libraries.gradle index 993d947c89..32ab7b97b4 100644 --- a/libraries.gradle +++ b/libraries.gradle @@ -2,7 +2,8 @@ ext { jposVersion = '2.0.5-SNAPSHOT' slf4jVersion = '1.7.10' logbackVersion = '1.1.3' - hibernateVersion = '5.0.2.Final' + hibernateVersion = '5.0.5.Final' + geronimoVersion = '1.1.1' jettyVersion = '9.2.14.v20151106' servletApiVersion = '3.0.1' websocketApiVersion = '1.0' @@ -39,6 +40,7 @@ ext { hibernate_envers: "org.hibernate:hibernate-envers:${hibernateVersion}", hibernate_c3p0: "org.hibernate:hibernate-c3p0:${hibernateVersion}", hibernate_ehcache: "org.hibernate:hibernate-ehcache:${hibernateVersion}", + jta: "org.apache.geronimo.specs:geronimo-jta_1.1_spec:${geronimoVersion}", //Supported Databases jdbcH2: 'com.h2database:h2:1.4.189', diff --git a/modules/dbsupport/build.gradle b/modules/dbsupport/build.gradle index bed9b8146f..6982807958 100644 --- a/modules/dbsupport/build.gradle +++ b/modules/dbsupport/build.gradle @@ -6,5 +6,7 @@ dependencies { compile libraries.hibernate_envers compile libraries.hibernate_c3p0 compile libraries.hibernate_ehcache + compile libraries.jta compile "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}" } +