diff --git a/assemblies/features/enterprise/src/main/resources/features.xml b/assemblies/features/enterprise/src/main/resources/features.xml index b014bd2..035cb66 100644 --- a/assemblies/features/enterprise/src/main/resources/features.xml +++ b/assemblies/features/enterprise/src/main/resources/features.xml @@ -21,6 +21,7 @@ mvn:org.ops4j.pax.cdi/pax-cdi-features/${pax.cdi.version}/xml/features + mvn:org.ops4j.pax.jdbc/pax-jdbc-features/${pax.jdbc.version}/xml/features
JTA implementation provided by Apache Aries Transaction 1.0.0
@@ -222,9 +223,10 @@
JDBC support providing service, commands, and MBean
- transaction - mvn:commons-pool/commons-pool/${commons-pool.version} - mvn:commons-dbcp/commons-dbcp/${commons-dbcp.version} + connector + pax-jdbc + mvn:org.apache.xbean/xbean-blueprint/${xbean.version} + mvn:org.apache.aries.transaction/org.apache.aries.transaction.jdbc/${aries.transaction.jdbc.version} mvn:org.apache.karaf.jdbc/org.apache.karaf.jdbc.core/${project.version} mvn:org.apache.karaf.jdbc/org.apache.karaf.jdbc.command/${project.version}
@@ -233,6 +235,9 @@
JMS support provinding service, commands, and MBean.
transaction mvn:org.apache.geronimo.specs/geronimo-jms_1.1_spec/${geronimo.jms-spec.version} + mvn:commons-pool/commons-pool/${commons-pool.version} + mvn:org.apache.xbean/xbean-blueprint/${xbean.version} + mvn:org.apache.aries.transaction/org.apache.aries.transaction.jms/${aries.transaction.jms.version} mvn:org.apache.karaf.jms/org.apache.karaf.jms.core/${project.version} mvn:org.apache.karaf.jms/org.apache.karaf.jms.command/${project.version}
diff --git a/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-db2.xml b/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-db2.xml index 6ae8ea8..5ce9e71 100644 --- a/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-db2.xml +++ b/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-db2.xml @@ -15,7 +15,9 @@ the specific language governing permissions and limitations under the License. --> - + @@ -23,10 +25,12 @@ - + + + - \ No newline at end of file + diff --git a/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-derby.xml b/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-derby.xml index 13e3e7f..75f5d2f 100644 --- a/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-derby.xml +++ b/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-derby.xml @@ -16,23 +16,19 @@ License. --> + xmlns:bp="http://www.osgi.org/xmlns/blueprint/v1.0.0" + xmlns:jdbc="http://aries.apache.org/xmlns/transaction-jdbc/2.1"> - + - + + + - - - - - - diff --git a/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-generic.xml b/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-generic.xml index 286d82c..07e475c 100644 --- a/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-generic.xml +++ b/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-generic.xml @@ -8,129 +8,30 @@ 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 Unless required by - applicable law or agreed to in writing, software distributed under the - License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR - CONDITIONS OF ANY KIND, either express or implied. See the License for - the specific language governing permissions and limitations under the - License. - --> - + http://www.apache.org/licenses/LICENSE-2.0 Unless required by + applicable law or agreed to in writing, software distributed under the + License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + CONDITIONS OF ANY KIND, either express or implied. See the License for + the specific language governing permissions and limitations under the + License. +--> + - - - - - - + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -138,4 +39,4 @@ - \ No newline at end of file + diff --git a/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-h2.xml b/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-h2.xml index ff93e32..0c5444e 100644 --- a/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-h2.xml +++ b/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-h2.xml @@ -15,7 +15,9 @@ the specific language governing permissions and limitations under the License. --> - + @@ -23,9 +25,12 @@ - + + + - \ No newline at end of file + + diff --git a/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-hsql.xml b/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-hsql.xml index e869eb7..cf2811e 100644 --- a/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-hsql.xml +++ b/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-hsql.xml @@ -15,7 +15,9 @@ the specific language governing permissions and limitations under the License. --> - + @@ -23,9 +25,12 @@ - + + + - \ No newline at end of file + + diff --git a/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-mssql.xml b/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-mssql.xml index c62285d..eebb315 100644 --- a/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-mssql.xml +++ b/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-mssql.xml @@ -15,7 +15,9 @@ the specific language governing permissions and limitations under the License. --> - + @@ -24,9 +26,12 @@ - + + + - \ No newline at end of file + + diff --git a/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-mysql.xml b/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-mysql.xml index 75fed3a..caa04d9 100644 --- a/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-mysql.xml +++ b/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-mysql.xml @@ -15,7 +15,9 @@ the specific language governing permissions and limitations under the License. --> - + @@ -23,9 +25,12 @@ - + + + - \ No newline at end of file + + diff --git a/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-oracle.xml b/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-oracle.xml index d9e8853..7bf48c5 100644 --- a/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-oracle.xml +++ b/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-oracle.xml @@ -15,7 +15,9 @@ the specific language governing permissions and limitations under the License. --> - + @@ -23,9 +25,12 @@ - + + + - \ No newline at end of file + + diff --git a/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-postgres.xml b/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-postgres.xml index c9d2bcb..147cb9d 100644 --- a/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-postgres.xml +++ b/jdbc/core/src/main/resources/org/apache/karaf/jdbc/internal/datasource-postgres.xml @@ -15,20 +15,23 @@ the specific language governing permissions and limitations under the License. --> - + - + - - - + + + - \ No newline at end of file + + diff --git a/jms/core/src/main/resources/org/apache/karaf/jms/internal/connectionfactory-activemq.xml b/jms/core/src/main/resources/org/apache/karaf/jms/internal/connectionfactory-activemq.xml index 53d73cc..beed5e7 100644 --- a/jms/core/src/main/resources/org/apache/karaf/jms/internal/connectionfactory-activemq.xml +++ b/jms/core/src/main/resources/org/apache/karaf/jms/internal/connectionfactory-activemq.xml @@ -21,18 +21,10 @@ - + - - - - - - - - diff --git a/jms/core/src/main/resources/org/apache/karaf/jms/internal/connectionfactory-webspheremq.xml b/jms/core/src/main/resources/org/apache/karaf/jms/internal/connectionfactory-webspheremq.xml index 347a7c6..7571cc9 100644 --- a/jms/core/src/main/resources/org/apache/karaf/jms/internal/connectionfactory-webspheremq.xml +++ b/jms/core/src/main/resources/org/apache/karaf/jms/internal/connectionfactory-webspheremq.xml @@ -23,10 +23,15 @@ - + - + + + + + + diff --git a/pom.xml b/pom.xml index 35f50ac..0d03159 100644 --- a/pom.xml +++ b/pom.xml @@ -186,7 +186,8 @@ 1.0.2 1.0.0 1.0.1 - 1.0.0 + 2.1.0 + 2.0.0 1.1.0 1.11 2.12 @@ -199,6 +200,7 @@ 1.4.0 0.8.0 2.6.0 + 0.4.0-SNAPSHOT 1.7.4 1.7.6 1.3.7 @@ -234,6 +236,17 @@ + + spring + Spring Repository + http://repository.springsource.com/maven/bundles/release + + true + + + false + + servicemix