You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by jb...@apache.org on 2015/11/05 11:52:11 UTC

[1/3] karaf git commit: [KARAF-3879] jdbc feature should installs pax-jdbc feature

Repository: karaf
Updated Branches:
  refs/heads/master 09d47ba57 -> 55bcb232d


[KARAF-3879] jdbc feature should installs pax-jdbc feature


Project: http://git-wip-us.apache.org/repos/asf/karaf/repo
Commit: http://git-wip-us.apache.org/repos/asf/karaf/commit/71c8bc73
Tree: http://git-wip-us.apache.org/repos/asf/karaf/tree/71c8bc73
Diff: http://git-wip-us.apache.org/repos/asf/karaf/diff/71c8bc73

Branch: refs/heads/master
Commit: 71c8bc739345cbd3bcf5622265e2fd089fe664f9
Parents: 025b6fb
Author: Andrea Cosentino <an...@gmail.com>
Authored: Tue Nov 3 14:10:35 2015 +0100
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Tue Nov 3 14:10:35 2015 +0100

----------------------------------------------------------------------
 assemblies/features/enterprise/src/main/feature/feature.xml | 2 ++
 pom.xml                                                     | 1 +
 2 files changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/karaf/blob/71c8bc73/assemblies/features/enterprise/src/main/feature/feature.xml
----------------------------------------------------------------------
diff --git a/assemblies/features/enterprise/src/main/feature/feature.xml b/assemblies/features/enterprise/src/main/feature/feature.xml
index b7fe0ec..81b0cdd 100644
--- a/assemblies/features/enterprise/src/main/feature/feature.xml
+++ b/assemblies/features/enterprise/src/main/feature/feature.xml
@@ -21,6 +21,7 @@
     <!-- NB: this file is not the one really used. This file is used by the karaf-maven-plugin to define the start-level of bundles in the generated feature.xml -->
 
     <repository>mvn:org.ops4j.pax.cdi/pax-cdi-features/${pax.cdi.version}/xml/features</repository>
+    <repository>mvn:org.ops4j.pax.jdbc/pax-jdbc-features/${pax.jdbc.version}/xml/features</repository>
     <repository>mvn:org.apache.karaf.features/standard/${project.version}/xml/features</repository>
     
     <feature name="transaction-api" version="1.1.0">
@@ -263,6 +264,7 @@
 
     <feature name="jdbc" description="JDBC service and commands" version="${project.version}">
         <details>JDBC support providing service, commands, and MBean.</details>
+        <feature>pax-jdbc</feature>
         <bundle dependency="true">mvn:org.osgi/org.osgi.service.jdbc/${org.osgi.service.jdbc.version}</bundle>
         <bundle>mvn:org.apache.karaf.jdbc/org.apache.karaf.jdbc.core/${project.version}</bundle>
     </feature>

http://git-wip-us.apache.org/repos/asf/karaf/blob/71c8bc73/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index d5c8942..b69d34c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -261,6 +261,7 @@
         <pax.url.version>2.4.3</pax.url.version>
         <pax.web.version>4.2.2</pax.web.version>
         <pax.tinybundle.version>2.1.1</pax.tinybundle.version>
+        <pax.jdbc.version>0.7.0</pax.jdbc.version>
 
         <portlet-api.version>2.0</portlet-api.version>
         <slf4j.version>1.7.12</slf4j.version>


[2/3] karaf git commit: Merge branch 'KARAF-3879' of https://github.com/oscerd/karaf

Posted by jb...@apache.org.
Merge branch 'KARAF-3879' of https://github.com/oscerd/karaf


Project: http://git-wip-us.apache.org/repos/asf/karaf/repo
Commit: http://git-wip-us.apache.org/repos/asf/karaf/commit/7017a7e2
Tree: http://git-wip-us.apache.org/repos/asf/karaf/tree/7017a7e2
Diff: http://git-wip-us.apache.org/repos/asf/karaf/diff/7017a7e2

Branch: refs/heads/master
Commit: 7017a7e2bfe9150f1ce70fd26dd0c8845f987d04
Parents: 09d47ba 71c8bc7
Author: Jean-Baptiste Onofré <jb...@apache.org>
Authored: Thu Nov 5 10:30:04 2015 +0100
Committer: Jean-Baptiste Onofré <jb...@apache.org>
Committed: Thu Nov 5 10:30:04 2015 +0100

----------------------------------------------------------------------
 assemblies/features/enterprise/src/main/feature/feature.xml | 2 ++
 pom.xml                                                     | 1 +
 2 files changed, 3 insertions(+)
----------------------------------------------------------------------



[3/3] karaf git commit: [KARAF-3879] Fix pax-jdbc* features definition

Posted by jb...@apache.org.
[KARAF-3879] Fix pax-jdbc* features definition


Project: http://git-wip-us.apache.org/repos/asf/karaf/repo
Commit: http://git-wip-us.apache.org/repos/asf/karaf/commit/55bcb232
Tree: http://git-wip-us.apache.org/repos/asf/karaf/tree/55bcb232
Diff: http://git-wip-us.apache.org/repos/asf/karaf/diff/55bcb232

Branch: refs/heads/master
Commit: 55bcb232d70d9fac839a8ebfafaee520762de971
Parents: 7017a7e
Author: Jean-Baptiste Onofré <jb...@apache.org>
Authored: Thu Nov 5 11:51:42 2015 +0100
Committer: Jean-Baptiste Onofré <jb...@apache.org>
Committed: Thu Nov 5 11:51:42 2015 +0100

----------------------------------------------------------------------
 assemblies/features/enterprise/src/main/feature/feature.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/karaf/blob/55bcb232/assemblies/features/enterprise/src/main/feature/feature.xml
----------------------------------------------------------------------
diff --git a/assemblies/features/enterprise/src/main/feature/feature.xml b/assemblies/features/enterprise/src/main/feature/feature.xml
index 81b0cdd..6977eb0 100644
--- a/assemblies/features/enterprise/src/main/feature/feature.xml
+++ b/assemblies/features/enterprise/src/main/feature/feature.xml
@@ -264,7 +264,8 @@
 
     <feature name="jdbc" description="JDBC service and commands" version="${project.version}">
         <details>JDBC support providing service, commands, and MBean.</details>
-        <feature>pax-jdbc</feature>
+        <feature prerequisite="true">pax-jdbc</feature>
+        <feature prerequisite="true">pax-jdbc-config</feature>
         <bundle dependency="true">mvn:org.osgi/org.osgi.service.jdbc/${org.osgi.service.jdbc.version}</bundle>
         <bundle>mvn:org.apache.karaf.jdbc/org.apache.karaf.jdbc.core/${project.version}</bundle>
     </feature>