You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by ti...@apache.org on 2019/02/08 16:14:09 UTC

[aries-tx-control] branch master updated (1ff407f -> c86b8c8)

This is an automated email from the ASF dual-hosted git repository.

timothyjward pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/aries-tx-control.git.


    from 1ff407f  Ensure integration tests run against the current provider versions and fix the imports for HikariCP 3.3.0
     new 5baa385  Add integration tests for the Transaction Control Service implementations
     new c86b8c8  Upgrade to bnd-maven-plugin version 4.1.0

The 123 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 tx-control-parent/pom.xml                          |   2 +-
 tx-control-services/pom.xml                        |   1 +
 .../LICENSE                                        |   0
 .../NOTICE                                         |   0
 .../tx-control-service-itests}/pom.xml             |  79 +---
 .../itests/service/LocalTransactionTest.java       | 126 ++++++
 .../tx/control/itests/service/PoisonResource.java  |  27 ++
 .../control/itests/service/RecordingResource.java  |  97 ++++
 .../tx/control/itests/service/RecoveryTest.java    | 204 +++++++++
 .../control/itests/service/XATransactionTest.java  | 493 +++++++++++++++++++++
 10 files changed, 962 insertions(+), 67 deletions(-)
 copy tx-control-services/{tx-control-service-xa => tx-control-service-itests}/LICENSE (100%)
 copy tx-control-services/{tx-control-service-xa => tx-control-service-itests}/NOTICE (100%)
 copy {tx-control-providers/jdbc/tx-control-jdbc-itests => tx-control-services/tx-control-service-itests}/pom.xml (74%)
 create mode 100644 tx-control-services/tx-control-service-itests/src/test/java/org/apache/aries/tx/control/itests/service/LocalTransactionTest.java
 create mode 100644 tx-control-services/tx-control-service-itests/src/test/java/org/apache/aries/tx/control/itests/service/PoisonResource.java
 create mode 100644 tx-control-services/tx-control-service-itests/src/test/java/org/apache/aries/tx/control/itests/service/RecordingResource.java
 create mode 100644 tx-control-services/tx-control-service-itests/src/test/java/org/apache/aries/tx/control/itests/service/RecoveryTest.java
 create mode 100644 tx-control-services/tx-control-service-itests/src/test/java/org/apache/aries/tx/control/itests/service/XATransactionTest.java