You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by jb...@apache.org on 2021/08/09 04:24:44 UTC

[aries-jpa] branch master updated (c9056db -> d017bd7)

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

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


    from c9056db  [tests] Fix Karaf integration tests
     add 6fdb8e7  [ARIES-2050] EMSupplier selectes better TX-related coordination to store EM instance
     add 125a4ae  [ARIES-2050] Use org.apache.aries.transaction.blueprint-2.3.0
     new d017bd7  Merge pull request #10 from apache/ARIES-2050

The 1 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:
 .../osgi.bnd                                       |  0
 .../pom.xml                                        | 30 ++++++---
 .../container/itest/bundle/blueprint/CarDao.java   | 14 +++--
 .../itest/bundle/blueprint/NewTxTestService.java   | 10 +--
 .../itest/bundle/blueprint/TestService.java        |  6 +-
 .../itest/bundle/blueprint/dao/CarDaoImpl.java}    | 37 ++++-------
 .../blueprint/impl/NewTxTestServiceImpl.java       | 58 +++++++++++++++++
 .../bundle/blueprint/impl/TestServiceImpl.java     | 72 ++++++++++++++++++++++
 .../main/resources/OSGI-INF/blueprint/config.xml   | 48 +++++++++++++++
 itests/jpa-container-itest/pom.xml                 |  6 ++
 .../aries/itest/BlueprintDaoTest.java}             | 43 ++++++-------
 .../apache/aries/jpa/itest/AbstractJPAItest.java   |  4 ++
 itests/pom.xml                                     |  1 +
 .../aries/jpa/support/impl/EMSupplierImpl.java     | 10 +++
 14 files changed, 273 insertions(+), 66 deletions(-)
 copy itests/{jpa-container-blueprint-testbundle => jpa-container-blueprint-testbundle-dao}/osgi.bnd (100%)
 copy itests/{jpa-container-blueprint-testbundle => jpa-container-blueprint-testbundle-dao}/pom.xml (78%)
 copy jpa-api/src/main/java/org/apache/aries/jpa/template/EmConsumer.java => itests/jpa-container-blueprint-testbundle-dao/src/main/java/org/apache/aries/jpa/container/itest/bundle/blueprint/CarDao.java (77%)
 copy jpa-api/src/main/java/org/apache/aries/jpa/template/EmFunction.java => itests/jpa-container-blueprint-testbundle-dao/src/main/java/org/apache/aries/jpa/container/itest/bundle/blueprint/NewTxTestService.java (78%)
 copy jpa-blueprint/src/test/java/org/apache/aries/jpa/blueprint/impl/TestInterface.java => itests/jpa-container-blueprint-testbundle-dao/src/main/java/org/apache/aries/jpa/container/itest/bundle/blueprint/TestService.java (85%)
 copy itests/{jpa-container-blueprint-testbundle/src/main/java/org/apache/aries/jpa/container/itest/bundle/blueprint/impl/CarServiceImpl.java => jpa-container-blueprint-testbundle-dao/src/main/java/org/apache/aries/jpa/container/itest/bundle/blueprint/dao/CarDaoImpl.java} (59%)
 create mode 100644 itests/jpa-container-blueprint-testbundle-dao/src/main/java/org/apache/aries/jpa/container/itest/bundle/blueprint/impl/NewTxTestServiceImpl.java
 create mode 100644 itests/jpa-container-blueprint-testbundle-dao/src/main/java/org/apache/aries/jpa/container/itest/bundle/blueprint/impl/TestServiceImpl.java
 create mode 100644 itests/jpa-container-blueprint-testbundle-dao/src/main/resources/OSGI-INF/blueprint/config.xml
 copy itests/jpa-container-itest/src/test/java/org/apache/aries/jpa/{container/itest/JPAContainerHibernate5_2Test.java => blueprint/aries/itest/BlueprintDaoTest.java} (52%)

[aries-jpa] 01/01: Merge pull request #10 from apache/ARIES-2050

Posted by jb...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jbonofre pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/aries-jpa.git

commit d017bd7bb735626840a63d6b79db25e28ef82a46
Merge: c9056db 125a4ae
Author: Jean-Baptiste Onofré <jb...@apache.org>
AuthorDate: Mon Aug 9 06:24:37 2021 +0200

    Merge pull request #10 from apache/ARIES-2050
    
    [ARIES-2050] EMSupplier selectes better TX-related coordination to st…

 .../osgi.bnd                                       | 18 +++++
 .../jpa-container-blueprint-testbundle-dao/pom.xml | 86 ++++++++++++++++++++++
 .../container/itest/bundle/blueprint/CarDao.java   | 31 ++++++++
 .../itest/bundle/blueprint/NewTxTestService.java   | 27 +++++++
 .../itest/bundle/blueprint/TestService.java        | 25 +++++++
 .../itest/bundle/blueprint/dao/CarDaoImpl.java     | 45 +++++++++++
 .../blueprint/impl/NewTxTestServiceImpl.java       | 58 +++++++++++++++
 .../bundle/blueprint/impl/TestServiceImpl.java     | 72 ++++++++++++++++++
 .../main/resources/OSGI-INF/blueprint/config.xml   | 48 ++++++++++++
 itests/jpa-container-itest/pom.xml                 |  6 ++
 .../blueprint/aries/itest/BlueprintDaoTest.java    | 48 ++++++++++++
 .../apache/aries/jpa/itest/AbstractJPAItest.java   |  4 +
 itests/pom.xml                                     |  1 +
 .../aries/jpa/support/impl/EMSupplierImpl.java     | 10 +++
 14 files changed, 479 insertions(+)