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 2016/08/16 11:51:09 UTC

svn commit: r1756512 - in /aries/trunk/tx-control: tx-control-provider-jdbc-local/.gitignore tx-control-provider-jdbc-xa/.gitignore tx-control-provider-jpa-local/.gitignore tx-control-provider-jpa-local/bnd.bnd tx-control-provider-jpa-xa/bnd.bnd

Author: timothyjward
Date: Tue Aug 16 11:51:09 2016
New Revision: 1756512

URL: http://svn.apache.org/viewvc?rev=1756512&view=rev
Log:
[tx-control] Add missing package to avoid the need to deploy the JDBC API

Modified:
    aries/trunk/tx-control/tx-control-provider-jdbc-local/.gitignore
    aries/trunk/tx-control/tx-control-provider-jdbc-xa/.gitignore
    aries/trunk/tx-control/tx-control-provider-jpa-local/.gitignore
    aries/trunk/tx-control/tx-control-provider-jpa-local/bnd.bnd
    aries/trunk/tx-control/tx-control-provider-jpa-xa/bnd.bnd

Modified: aries/trunk/tx-control/tx-control-provider-jdbc-local/.gitignore
URL: http://svn.apache.org/viewvc/aries/trunk/tx-control/tx-control-provider-jdbc-local/.gitignore?rev=1756512&r1=1756511&r2=1756512&view=diff
==============================================================================
--- aries/trunk/tx-control/tx-control-provider-jdbc-local/.gitignore (original)
+++ aries/trunk/tx-control/tx-control-provider-jdbc-local/.gitignore Tue Aug 16 11:51:09 2016
@@ -1 +1,2 @@
 /target/
+/bin/

Modified: aries/trunk/tx-control/tx-control-provider-jdbc-xa/.gitignore
URL: http://svn.apache.org/viewvc/aries/trunk/tx-control/tx-control-provider-jdbc-xa/.gitignore?rev=1756512&r1=1756511&r2=1756512&view=diff
==============================================================================
--- aries/trunk/tx-control/tx-control-provider-jdbc-xa/.gitignore (original)
+++ aries/trunk/tx-control/tx-control-provider-jdbc-xa/.gitignore Tue Aug 16 11:51:09 2016
@@ -1 +1,2 @@
 /target/
+/bin/

Modified: aries/trunk/tx-control/tx-control-provider-jpa-local/.gitignore
URL: http://svn.apache.org/viewvc/aries/trunk/tx-control/tx-control-provider-jpa-local/.gitignore?rev=1756512&r1=1756511&r2=1756512&view=diff
==============================================================================
--- aries/trunk/tx-control/tx-control-provider-jpa-local/.gitignore (original)
+++ aries/trunk/tx-control/tx-control-provider-jpa-local/.gitignore Tue Aug 16 11:51:09 2016
@@ -1 +1,2 @@
 /target/
+/bin/

Modified: aries/trunk/tx-control/tx-control-provider-jpa-local/bnd.bnd
URL: http://svn.apache.org/viewvc/aries/trunk/tx-control/tx-control-provider-jpa-local/bnd.bnd?rev=1756512&r1=1756511&r2=1756512&view=diff
==============================================================================
--- aries/trunk/tx-control/tx-control-provider-jpa-local/bnd.bnd (original)
+++ aries/trunk/tx-control/tx-control-provider-jpa-local/bnd.bnd Tue Aug 16 11:51:09 2016
@@ -20,7 +20,8 @@ Bundle-Activator: org.apache.aries.tx.co
 # Export the APIs we use so that this is an easily deployable bundle 
 # We keep the dual versions provided by Geronimo to keep things maximally happy
 
-Export-Package: org.osgi.service.transaction.control.jpa, \
+Export-Package: org.osgi.service.transaction.control.jdbc, \
+                org.osgi.service.transaction.control.jpa, \
                 org.osgi.service.cm, \
                 org.osgi.service.jdbc, \
                 org.osgi.service.jpa, \
@@ -57,6 +58,7 @@ Import-Package: !com.codahale.*, \
                 javax.persistence.metamodel;version="0.0.0", \
                 javax.persistence.spi;version="0.0.0", \
                 org.osgi.service.transaction.control, \
+                org.osgi.service.transaction.control.jdbc, \
                 org.osgi.service.transaction.control.jpa, \
                 org.osgi.service.cm, \
                 org.osgi.service.jdbc, \

Modified: aries/trunk/tx-control/tx-control-provider-jpa-xa/bnd.bnd
URL: http://svn.apache.org/viewvc/aries/trunk/tx-control/tx-control-provider-jpa-xa/bnd.bnd?rev=1756512&r1=1756511&r2=1756512&view=diff
==============================================================================
--- aries/trunk/tx-control/tx-control-provider-jpa-xa/bnd.bnd (original)
+++ aries/trunk/tx-control/tx-control-provider-jpa-xa/bnd.bnd Tue Aug 16 11:51:09 2016
@@ -20,7 +20,8 @@ Bundle-Activator: org.apache.aries.tx.co
 # Export the APIs we use so that this is an easily deployable bundle 
 # We keep the dual versions provided by Geronimo to keep things maximally happy
 
-Export-Package: org.osgi.service.transaction.control.jpa, \
+Export-Package: org.osgi.service.transaction.control.jdbc, \
+                org.osgi.service.transaction.control.jpa, \
                 org.osgi.service.cm, \
                 org.osgi.service.jdbc, \
                 org.osgi.service.jpa, \
@@ -63,6 +64,7 @@ Import-Package: !com.codahale.*, \
                 javax.persistence.metamodel;version="0.0.0", \
                 javax.persistence.spi;version="0.0.0", \
                 org.osgi.service.transaction.control, \
+                org.osgi.service.transaction.control.jdbc, \
                 org.osgi.service.transaction.control.jpa, \
                 org.osgi.service.cm, \
                 org.osgi.service.jdbc, \