[3/5] git commit: [KARAF-2833] Make jdbc independent of blueprint. Note that blueprint is still required to deploy the datasources

2014-04-14 Thread gnodet
[KARAF-2833] Make jdbc independent of blueprint.
Note that blueprint is still required to deploy the datasources

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

Branch: refs/heads/master
Commit: 3fe68988b2bf41808cd7647ebc82ae4092b8191a
Parents: ce0f75d
Author: Guillaume Nodet gno...@gmail.com
Authored: Mon Apr 14 11:06:40 2014 +0200
Committer: Guillaume Nodet gno...@gmail.com
Committed: Mon Apr 14 11:06:40 2014 +0200

--
 jdbc/pom.xml|  7 +++-
 .../karaf/jdbc/internal/osgi/Activator.java | 35 +
 .../resources/OSGI-INF/blueprint/jdbc-core.xml  | 41 
 3 files changed, 41 insertions(+), 42 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/3fe68988/jdbc/pom.xml
--
diff --git a/jdbc/pom.xml b/jdbc/pom.xml
index a6dce66..be8ef62 100644
--- a/jdbc/pom.xml
+++ b/jdbc/pom.xml
@@ -84,8 +84,13 @@
 org.apache.karaf.jdbc.command,
 org.apache.karaf.jdbc.command.completers,
 org.apache.karaf.jdbc.internal,
-org.apache.karaf.util
+org.apache.karaf.jdbc.internal.osgi,
+org.apache.karaf.util,
+org.apache.karaf.util.tracker
 /Private-Package
+Bundle-Activator
+org.apache.karaf.jdbc.internal.osgi.Activator
+/Bundle-Activator
 Karaf-Commands*/Karaf-Commands
 /instructions
 /configuration

http://git-wip-us.apache.org/repos/asf/karaf/blob/3fe68988/jdbc/src/main/java/org/apache/karaf/jdbc/internal/osgi/Activator.java
--
diff --git 
a/jdbc/src/main/java/org/apache/karaf/jdbc/internal/osgi/Activator.java 
b/jdbc/src/main/java/org/apache/karaf/jdbc/internal/osgi/Activator.java
new file mode 100644
index 000..8ede97a
--- /dev/null
+++ b/jdbc/src/main/java/org/apache/karaf/jdbc/internal/osgi/Activator.java
@@ -0,0 +1,35 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 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.
+ */
+package org.apache.karaf.jdbc.internal.osgi;
+
+import org.apache.karaf.jdbc.JdbcService;
+import org.apache.karaf.jdbc.internal.JdbcMBeanImpl;
+import org.apache.karaf.jdbc.internal.JdbcServiceImpl;
+import org.apache.karaf.util.tracker.BaseActivator;
+
+public class Activator extends BaseActivator {
+@Override
+protected void doStart() throws Exception {
+JdbcServiceImpl service = new JdbcServiceImpl();
+service.setBundleContext(bundleContext);
+register(JdbcService.class, service);
+
+JdbcMBeanImpl mbean = new JdbcMBeanImpl();
+mbean.setJdbcService(service);
+registerMBean(mbean, type=jdbc);
+}
+}

http://git-wip-us.apache.org/repos/asf/karaf/blob/3fe68988/jdbc/src/main/resources/OSGI-INF/blueprint/jdbc-core.xml
--
diff --git a/jdbc/src/main/resources/OSGI-INF/blueprint/jdbc-core.xml 
b/jdbc/src/main/resources/OSGI-INF/blueprint/jdbc-core.xml
deleted file mode 100644
index e961697..000
--- a/jdbc/src/main/resources/OSGI-INF/blueprint/jdbc-core.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-?xml version=1.0 encoding=UTF-8?
-!--
-
-Licensed to the Apache Software Foundation (ASF) under one or more
-contributor license agreements. See the NOTICE file distributed with
-this work for additional information regarding copyright ownership.
-The ASF licenses this file to You under the Apache License, Version
-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
-

[2/5] git commit: [KARAF-2903] Upgrade to gemini blueprint 1.0.2

2014-04-14 Thread gnodet
[KARAF-2903] Upgrade to gemini blueprint 1.0.2

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

Branch: refs/heads/master
Commit: ce0f75d30e5c214a03e3195fb01c48c5219ede1b
Parents: bf00db9
Author: Guillaume Nodet gno...@gmail.com
Authored: Mon Apr 14 11:03:48 2014 +0200
Committer: Guillaume Nodet gno...@gmail.com
Committed: Mon Apr 14 11:03:48 2014 +0200

--
 assemblies/features/spring/pom.xml  | 12 -
 .../spring/src/main/feature/feature.xml |  6 ++---
 pom.xml | 27 ++--
 3 files changed, 28 insertions(+), 17 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/ce0f75d3/assemblies/features/spring/pom.xml
--
diff --git a/assemblies/features/spring/pom.xml 
b/assemblies/features/spring/pom.xml
index a37137e..2112070 100644
--- a/assemblies/features/spring/pom.xml
+++ b/assemblies/features/spring/pom.xml
@@ -255,13 +255,13 @@
 
 !-- gemini-blueprint deps --
 dependency
-groupIdorg.eclipse.gemini.blueprint/groupId
-artifactIdgemini-blueprint-io/artifactId
+groupIdorg.eclipse.gemini/groupId
+artifactIdorg.eclipse.gemini.blueprint.io/artifactId
 scopeprovided/scope
 /dependency
 dependency
-groupIdorg.eclipse.gemini.blueprint/groupId
-artifactIdgemini-blueprint-core/artifactId
+groupIdorg.eclipse.gemini/groupId
+artifactIdorg.eclipse.gemini.blueprint.core/artifactId
 scopeprovided/scope
 exclusions
 exclusion
@@ -283,8 +283,8 @@
 /exclusions
 /dependency
 dependency
-groupIdorg.eclipse.gemini.blueprint/groupId
-artifactIdgemini-blueprint-extender/artifactId
+groupIdorg.eclipse.gemini/groupId
+artifactIdorg.eclipse.gemini.blueprint.extender/artifactId
 scopeprovided/scope
 exclusions
 exclusion

http://git-wip-us.apache.org/repos/asf/karaf/blob/ce0f75d3/assemblies/features/spring/src/main/feature/feature.xml
--
diff --git a/assemblies/features/spring/src/main/feature/feature.xml 
b/assemblies/features/spring/src/main/feature/feature.xml
index 768d9c3..5917225 100644
--- a/assemblies/features/spring/src/main/feature/feature.xml
+++ b/assemblies/features/spring/src/main/feature/feature.xml
@@ -284,9 +284,9 @@
 
 feature name=gemini-blueprint description=Gemini Blueprint Extender 
version=${gemini.blueprint.version} resolver=(obr)
 feature version=[3,4)spring/feature
-bundle 
start-level=30mvn:org.eclipse.gemini.blueprint/gemini-blueprint-io/${gemini.blueprint.version}/bundle
-bundle 
start-level=30mvn:org.eclipse.gemini.blueprint/gemini-blueprint-core/${gemini.blueprint.version}/bundle
-bundle 
start-level=30mvn:org.eclipse.gemini.blueprint/gemini-blueprint-extender/${gemini.blueprint.version}/bundle
+bundle 
start-level=30mvn:org.eclipse.gemini/org.eclipse.gemini.blueprint.io/${gemini.blueprint.version}/bundle
+bundle 
start-level=30mvn:org.eclipse.gemini/org.eclipse.gemini.blueprint.core/${gemini.blueprint.version}/bundle
+bundle 
start-level=30mvn:org.eclipse.gemini/org.eclipse.gemini.blueprint.extender/${gemini.blueprint.version}/bundle
 /feature
 
 /features

http://git-wip-us.apache.org/repos/asf/karaf/blob/ce0f75d3/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 6a0dcb4..c701331 100644
--- a/pom.xml
+++ b/pom.xml
@@ -206,7 +206,7 @@
 aries.transaction.jdbc.version1.0.0/aries.transaction.jdbc.version
 aries.util.version1.1.0/aries.util.version
 
-gemini.blueprint.version1.0.0.RELEASE/gemini.blueprint.version
+gemini.blueprint.version1.0.2.RELEASE/gemini.blueprint.version
 
hibernate.annotations.common.version3.3.0.ga/hibernate.annotations.common.version
 hibernate.annotations.version3.4.0.GA/hibernate.annotations.version
 hibernate.ejb.version3.4.0.GA/hibernate.ejb.version
@@ -315,7 +315,18 @@
 repository
 idzodiac-repository/id
 nameZodiac Release Repository/name
-urlhttp://zodiac.springsource.com/maven/bundles/release/url
+urlhttp://repository.springsource.com/maven/bundles/release/url
+releases
+enabledtrue/enabled
+/releases
+snapshots
+

[5/5] git commit: Fix integration tests

2014-04-14 Thread gnodet
Fix integration tests

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

Branch: refs/heads/master
Commit: 69a53969d817dce68816ceb6a229e6d6177b5b16
Parents: 8b59f97
Author: Guillaume Nodet gno...@gmail.com
Authored: Mon Apr 14 11:18:12 2014 +0200
Committer: Guillaume Nodet gno...@gmail.com
Committed: Mon Apr 14 11:18:12 2014 +0200

--
 itests/pom.xml | 4 
 1 file changed, 4 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/69a53969/itests/pom.xml
--
diff --git a/itests/pom.xml b/itests/pom.xml
index aa74c4f..21178d2 100644
--- a/itests/pom.xml
+++ b/itests/pom.xml
@@ -39,6 +39,10 @@
 
 dependencies
 dependency
+groupIdorg.osgi/groupId
+artifactIdorg.osgi.core/artifactId
+/dependency
+dependency
 groupIdorg.apache.karaf/groupId
 artifactIdapache-karaf/artifactId
 scopetest/scope



[1/5] git commit: Clean main jar a bit to avoid unused or duplicate classes

2014-04-14 Thread gnodet
Repository: karaf
Updated Branches:
  refs/heads/master fd4b3f677 - 69a53969d


Clean main jar a bit to avoid unused or duplicate classes

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

Branch: refs/heads/master
Commit: bf00db92c148cd9b852596273cbba3e6f510dcd6
Parents: fd4b3f6
Author: Guillaume Nodet gno...@gmail.com
Authored: Fri Apr 11 20:56:48 2014 +0200
Committer: Guillaume Nodet gno...@gmail.com
Committed: Fri Apr 11 20:56:48 2014 +0200

--
 main/pom.xml|   5 +-
 .../apache/karaf/main/util/ServerInfoImpl.java  | 107 ---
 2 files changed, 2 insertions(+), 110 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/bf00db92/main/pom.xml
--
diff --git a/main/pom.xml b/main/pom.xml
index 2f4982a..e3783b4 100644
--- a/main/pom.xml
+++ b/main/pom.xml
@@ -93,9 +93,8 @@
 /Export-Package
 Private-Package
 org.apache.karaf.main*,
-org.apache.felix.*;-split-package:=merge-first,
-
org.apache.karaf.util.*;-split-package:=merge-first,
-org.osgi.*;-split-package:=merge-first,
+
org.apache.felix.utils.properties;-split-package:=merge-first,
+
org.apache.karaf.util.locks;-split-package:=merge-first,
 META-INF;-split-package:=merge-first
 /Private-Package
 Import-Package!*/Import-Package

http://git-wip-us.apache.org/repos/asf/karaf/blob/bf00db92/main/src/main/java/org/apache/karaf/main/util/ServerInfoImpl.java
--
diff --git a/main/src/main/java/org/apache/karaf/main/util/ServerInfoImpl.java 
b/main/src/main/java/org/apache/karaf/main/util/ServerInfoImpl.java
deleted file mode 100644
index aa4821f..000
--- a/main/src/main/java/org/apache/karaf/main/util/ServerInfoImpl.java
+++ /dev/null
@@ -1,107 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 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.
- */
-
-
-package org.apache.karaf.main.util;
-
-import java.io.File;
-import java.net.URI;
-
-import org.apache.karaf.info.ServerInfo;
-
-public class ServerInfoImpl implements ServerInfo {
-
-private final File base;
-private final File home;
-private final File data;
-private final File instances;
-private final String[] args;
-
-public ServerInfoImpl(String[] args, File base, File data, File home, File 
instances) {
-this.args = args;
-this.base = base;
-this.data = data;
-this.home = home;
-this.instances = instances;
-}
-
-@Override
-public File getHomeDirectory() {
-return home;
-}
-
-@Override
-public String resolveHomePath(String filename) {
-return resolveWithBase(home, filename).getAbsolutePath();
-}
-
-@Override
-public File resolveHome(String filename) {
-return resolveWithBase(home, filename);
-}
-
-@Override
-public URI resolveHome(URI uri) {
-return home.toURI().resolve(uri);
-}
-
-@Override
-public File getBaseDirectory() {
-return base;
-}
-
-@Override
-public String resolveBasePath(String filename) {
-return resolveWithBase(base, filename).getAbsolutePath();
-}
-
-@Override
-public File resolveBase(String filename) {
-return resolveWithBase(base, filename);
-}
-
-@Override
-public URI resolveBase(URI uri) {
-return base.toURI().resolve(uri);
-}
-
-@Override
-public File getDataDirectory() {
-return data;
-}
-
-@Override
-public File getInstancesDirectory() {
-return instances;
-}
-
-@Override
-public 

[4/5] git commit: [KARAF-2904] Use the osgi extender namespace for blueprint

2014-04-14 Thread gnodet
[KARAF-2904] Use the osgi extender namespace for blueprint

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

Branch: refs/heads/master
Commit: 8b59f9767c2ec2b36dfe7cee9787ff44e72396bc
Parents: 3fe6898
Author: Guillaume Nodet gno...@gmail.com
Authored: Mon Apr 14 11:08:39 2014 +0200
Committer: Guillaume Nodet gno...@gmail.com
Committed: Mon Apr 14 11:08:39 2014 +0200

--
 .../features/enterprise/src/main/feature/feature.xml | 11 +--
 assemblies/features/spring/src/main/feature/feature.xml  |  5 -
 .../features/standard/src/main/feature/feature.xml   |  5 +++--
 3 files changed, 16 insertions(+), 5 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/8b59f976/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 24c4136..da68fe1 100644
--- a/assemblies/features/enterprise/src/main/feature/feature.xml
+++ b/assemblies/features/enterprise/src/main/feature/feature.xml
@@ -16,7 +16,7 @@
 See the License for the specific language governing permissions and
 limitations under the License.
 --
-features name=enterprise-${project.version} 
xmlns=http://karaf.apache.org/xmlns/features/v1.2.0; 
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation=http://karaf.apache.org/xmlns/features/v1.2.0 
http://karaf.apache.org/xmlns/features/v1.2.0;
+features name=enterprise-${project.version} 
xmlns=http://karaf.apache.org/xmlns/features/v1.3.0; 
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation=http://karaf.apache.org/xmlns/features/v1.3.0 
http://karaf.apache.org/xmlns/features/v1.3.0;
 
 !-- 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 --
 
@@ -186,10 +186,17 @@
 feature name=jdbc description=JDBC service and commands 
version=${project.version} resolver=(obr)
 detailsJDBC support providing service, commands, and MBean./details
 featuretransaction/feature
-featurearies-blueprint/feature
 bundlemvn:commons-pool/commons-pool/${commons-pool.version}/bundle
 bundlemvn:commons-dbcp/commons-dbcp/${commons-dbcp.version}/bundle
 
bundlemvn:org.apache.karaf.jdbc/org.apache.karaf.jdbc.core/${project.version}/bundle
+!--
+   Requirement on Blueprint.
+   We don't use a feature dependency to allow the choice between 
aries-blueprint and gemini-blueprint.
+   This means that you need to install one of the above to be able to 
install the jdbc feature.
+--
+requirement
+
osgi.extender;filter:=(amp;(osgi.extender=osgi.blueprint)(version=1.0))
+/requirement
 /feature
 
 feature name=jms description=JMS service and commands 
version=${project.version} resolver=(obr)

http://git-wip-us.apache.org/repos/asf/karaf/blob/8b59f976/assemblies/features/spring/src/main/feature/feature.xml
--
diff --git a/assemblies/features/spring/src/main/feature/feature.xml 
b/assemblies/features/spring/src/main/feature/feature.xml
index 5917225..b8f0066 100644
--- a/assemblies/features/spring/src/main/feature/feature.xml
+++ b/assemblies/features/spring/src/main/feature/feature.xml
@@ -16,7 +16,7 @@
   See the License for the specific language governing permissions and
   limitations under the License.
 --
-features name=spring-${project.version} 
xmlns=http://karaf.apache.org/xmlns/features/v1.2.0; 
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation=http://karaf.apache.org/xmlns/features/v1.2.0 
http://karaf.apache.org/xmlns/features/v1.2.0;
+features name=spring-${project.version} 
xmlns=http://karaf.apache.org/xmlns/features/v1.3.0; 
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation=http://karaf.apache.org/xmlns/features/v1.3.0 
http://karaf.apache.org/xmlns/features/v1.3.0;
 
 !-- 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 --
 
@@ -287,6 +287,9 @@
 bundle 
start-level=30mvn:org.eclipse.gemini/org.eclipse.gemini.blueprint.io/${gemini.blueprint.version}/bundle
 bundle 
start-level=30mvn:org.eclipse.gemini/org.eclipse.gemini.blueprint.core/${gemini.blueprint.version}/bundle
 bundle 

[2/3] git commit: [KARAF-2860] Upgrade to Felix Framework 4.4.0/Felix Framework Security 2.4.0

2014-04-14 Thread gnodet
[KARAF-2860] Upgrade to Felix Framework 4.4.0/Felix Framework Security 2.4.0

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

Branch: refs/heads/master
Commit: 8d5f52027edd676ba87fcd54ebeadeeeadebc543
Parents: 50b16bf
Author: Guillaume Nodet gno...@gmail.com
Authored: Mon Apr 14 14:17:07 2014 +0200
Committer: Guillaume Nodet gno...@gmail.com
Committed: Mon Apr 14 14:17:07 2014 +0200

--
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/8d5f5202/pom.xml
--
diff --git a/pom.xml b/pom.xml
index c701331..7425ca9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -158,8 +158,8 @@
 felix.bundlerepository.version1.6.6/felix.bundlerepository.version
 felix.configadmin.version1.6.0/felix.configadmin.version
 felix.fileinstall.version3.2.8/felix.fileinstall.version
-felix.framework.version4.2.1/felix.framework.version
-
felix.framework.security.version2.2.0/felix.framework.security.version
+felix.framework.version4.4.0/felix.framework.version
+
felix.framework.security.version2.4.0/felix.framework.security.version
 felix.gogo.version0.10.0/felix.gogo.version
 felix.plugin.version2.4.0/felix.plugin.version
 felix.utils.version1.6.0/felix.utils.version



[3/3] git commit: [KARAF-2907] Upgrade to ConfigAdmin 1.8.0

2014-04-14 Thread gnodet
[KARAF-2907] Upgrade to ConfigAdmin 1.8.0

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

Branch: refs/heads/master
Commit: 6687f00edf6524b069ff4907ee9295fd09ebca2a
Parents: 8d5f520
Author: Guillaume Nodet gno...@gmail.com
Authored: Mon Apr 14 14:21:30 2014 +0200
Committer: Guillaume Nodet gno...@gmail.com
Committed: Mon Apr 14 14:21:30 2014 +0200

--
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/6687f00e/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 7425ca9..406c904 100644
--- a/pom.xml
+++ b/pom.xml
@@ -156,7 +156,7 @@
 bndlib.version2.2.0/bndlib.version
 equinox.region.version1.0.0.v20110506/equinox.region.version
 felix.bundlerepository.version1.6.6/felix.bundlerepository.version
-felix.configadmin.version1.6.0/felix.configadmin.version
+felix.configadmin.version1.8.0/felix.configadmin.version
 felix.fileinstall.version3.2.8/felix.fileinstall.version
 felix.framework.version4.4.0/felix.framework.version
 
felix.framework.security.version2.4.0/felix.framework.security.version



[1/3] git commit: [KARAF-2888] Remove obsolete resolver xml attribute on features

2014-04-14 Thread gnodet
Repository: karaf
Updated Branches:
  refs/heads/master 69a53969d - 6687f00ed


[KARAF-2888] Remove obsolete resolver xml attribute on features

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

Branch: refs/heads/master
Commit: 50b16bf4a0a52908ef8bd21c775a0b3566769329
Parents: 69a5396
Author: Guillaume Nodet gno...@gmail.com
Authored: Mon Apr 14 13:57:41 2014 +0200
Committer: Guillaume Nodet gno...@gmail.com
Committed: Mon Apr 14 13:57:41 2014 +0200

--
 .../enterprise/src/main/feature/feature.xml | 30 
 .../spring/src/main/feature/feature.xml | 80 ++--
 .../standard/src/main/feature/feature.xml   | 24 +++---
 .../karaf/features/karaf-features-1.3.0.xsd | 20 -
 .../karaf/features/internal/service/f07.xml |  2 +-
 5 files changed, 68 insertions(+), 88 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/50b16bf4/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 da68fe1..8964686 100644
--- a/assemblies/features/enterprise/src/main/feature/feature.xml
+++ b/assemblies/features/enterprise/src/main/feature/feature.xml
@@ -22,7 +22,7 @@
 
 
repositorymvn:org.ops4j.pax.cdi/pax-cdi-features/${pax.cdi.version}/xml/features/repository
 
-feature name=transaction description=OSGi Transaction Manager 
version=${aries.transaction.version} resolver=(obr)
+feature name=transaction description=OSGi Transaction Manager 
version=${aries.transaction.version}
 detailsJTA implementation provided by Apache Aries Transaction 
${aries.transaction.version}/details
 config name=org.apache.aries.transaction
 aries.transaction.recoverable = true
@@ -40,7 +40,7 @@
 /conditional
 /feature
 
-feature name=jpa description=OSGi Persistence Container 
version=${aries.jpa.version} resolver=(obr)
+feature name=jpa description=OSGi Persistence Container 
version=${aries.jpa.version}
 detailsJPA implementation provided by Apache Aries JPA 
${aries.jpa.version}. NB: this feature doesnt provide the JPA engine, you have 
to install one by yourself (OpenJPA for instance)/details
 bundle dependency=true 
start-level=30mvn:org.apache.geronimo.specs/geronimo-jta_1.1_spec/${geronimo.jta-spec.version}/bundle
 bundle dependency=true 
start-level=30mvn:org.apache.geronimo.specs/geronimo-jpa_2.0_spec/${geronimo.jpa-spec.version}/bundle
@@ -53,7 +53,7 @@
 /conditional
 /feature
 
-feature name=openjpa description=Apache OpenJPA 2.2.x persistence 
engine support version=2.2.2 resolver=(obr)
+feature name=openjpa description=Apache OpenJPA 2.2.x persistence 
engine support version=2.2.2
 detailsEnable Apache OpenJPA as persistence engine./details
 bundle 
dependency=truemvn:org.apache.geronimo.specs/geronimo-annotation_1.0_spec/1.1.1/bundle
 bundle 
dependency=truemvn:org.apache.geronimo.specs/geronimo-jpa_2.0_spec/${geronimo.jpa-spec.version}/bundle
@@ -72,7 +72,7 @@
 featurejpa/feature
 /feature
 
-feature name=openjpa description=Apache OpenJPA 2.3.x persistence 
engine support version=2.3.0 resolver=(obr)
+feature name=openjpa description=Apache OpenJPA 2.3.x persistence 
engine support version=2.3.0
 detailsEnable Apache OpenJPA as persistence engine./details
 bundle 
dependency=truemvn:org.apache.geronimo.specs/geronimo-annotation_1.0_spec/1.1.1/bundle
 bundle 
dependency=truemvn:org.apache.geronimo.specs/geronimo-jpa_2.0_spec/${geronimo.jpa-spec.version}/bundle
@@ -91,7 +91,7 @@
 featurejpa/feature
 /feature
 
-feature name=hibernate description=Hibernate 3.x JPA persistence 
engine support version=${hibernate3.version} resolver=(obr)
+feature name=hibernate description=Hibernate 3.x JPA persistence 
engine support version=${hibernate3.version}
 detailsEnable Hibernate 3.x as persistence engine./details
 bundle 
dependency=truemvn:org.apache.servicemix.specs/org.apache.servicemix.specs.java-persistence-api-1.1.1/${servicemix.specs.version}/bundle
 bundle 
dependency=truemvn:commons-collections/commons-collections/${commons-collections.version}/bundle
@@ -109,7 +109,7 @@
 featurejpa/feature
 /feature
 
-feature name=hibernate description=Hibernate 4.2.x JPA persistence 
engine support version=${hibernate42.version} resolver=(obr)
+feature name=hibernate description=Hibernate 4.2.x JPA persistence 

[1/2] git commit: [KARAF-2908] Upgrade to hibernate latest 4.2.x and 4.3.x versions

2014-04-14 Thread gnodet
Repository: karaf
Updated Branches:
  refs/heads/master 6687f00ed - fa2950ab7


[KARAF-2908] Upgrade to hibernate latest 4.2.x and 4.3.x versions

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

Branch: refs/heads/master
Commit: ef091a399315a8b3b93afc23e43be5b92e6f9fb2
Parents: 6687f00
Author: Guillaume Nodet gno...@gmail.com
Authored: Mon Apr 14 14:51:16 2014 +0200
Committer: Guillaume Nodet gno...@gmail.com
Committed: Mon Apr 14 14:51:16 2014 +0200

--
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/ef091a39/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 406c904..6e6ebc3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -211,8 +211,8 @@
 hibernate.annotations.version3.4.0.GA/hibernate.annotations.version
 hibernate.ejb.version3.4.0.GA/hibernate.ejb.version
 hibernate3.version3.3.2.GA/hibernate3.version
-hibernate42.version4.2.7.Final/hibernate42.version
-hibernate43.version4.3.1.Final/hibernate43.version
+hibernate42.version4.2.9.Final/hibernate42.version
+hibernate43.version4.3.5.Final/hibernate43.version
 hibernate.validator.version5.0.3.Final/hibernate.validator.version
 jansi.version1.11/jansi.version
 javassist.version3.9.0.GA/javassist.version



[2/2] git commit: [KARAF-2909] Upgrade to felix gogo runtime 0.12.0

2014-04-14 Thread gnodet
[KARAF-2909] Upgrade to felix gogo runtime 0.12.0

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

Branch: refs/heads/master
Commit: fa2950ab7917aa7e994bdddc144d72a55c46f6ae
Parents: ef091a3
Author: Guillaume Nodet gno...@gmail.com
Authored: Mon Apr 14 14:51:38 2014 +0200
Committer: Guillaume Nodet gno...@gmail.com
Committed: Mon Apr 14 14:51:38 2014 +0200

--
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/fa2950ab/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 6e6ebc3..1f18ba1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -160,7 +160,7 @@
 felix.fileinstall.version3.2.8/felix.fileinstall.version
 felix.framework.version4.4.0/felix.framework.version
 
felix.framework.security.version2.4.0/felix.framework.security.version
-felix.gogo.version0.10.0/felix.gogo.version
+felix.gogo.version0.12.0/felix.gogo.version
 felix.plugin.version2.4.0/felix.plugin.version
 felix.utils.version1.6.0/felix.utils.version
 felix.webconsole.version4.2.0/felix.webconsole.version



[2/2] git commit: [KARAF-2911] Support for Aries OSGi subsystems

2014-04-14 Thread gnodet
[KARAF-2911] Support for Aries OSGi subsystems

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

Branch: refs/heads/master
Commit: eb3fb656194f5f2fb2cadc70524463b5e2004de4
Parents: 67f7610
Author: Guillaume Nodet gno...@gmail.com
Authored: Mon Apr 14 17:06:35 2014 +0200
Committer: Guillaume Nodet gno...@gmail.com
Committed: Mon Apr 14 17:07:59 2014 +0200

--
 .../enterprise/src/main/feature/feature.xml | 13 +++
 .../itests/features/EnterpriseFeaturesTest.java |  5 ++
 pom.xml | 14 +++
 services/coordinator/pom.xml| 95 
 services/eventadmin/pom.xml |  2 +-
 services/pom.xml|  1 +
 6 files changed, 129 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/eb3fb656/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 8964686..65ccf10 100644
--- a/assemblies/features/enterprise/src/main/feature/feature.xml
+++ b/assemblies/features/enterprise/src/main/feature/feature.xml
@@ -240,4 +240,17 @@
 bundle 
start-level=30mvn:org.apache.aries.application/org.apache.aries.application.runtime/${aries.application.version}/bundle
 /feature
 
+feature name=subsystems description=Support for OSGi subsystems 
version=${aries.subsystem.version}
+detailsSupport for Aries OSGi subsystems/details
+!-- blueprint is required for application.modeller --
+featurearies-blueprint/feature
+bundle 
start-level=30mvn:org.apache.felix/org.apache.felix.resolver/${felix.resolver.version}/bundle
+bundle 
start-level=30mvn:org.apache.karaf.services/org.apache.karaf.services.coordinator/${project.version}/bundle
+bundle 
start-level=30mvn:org.eclipse.equinox/org.eclipse.equinox.region/${equinox.region.version}/bundle
+bundle 
start-level=30mvn:org.apache.aries.application/org.apache.aries.application.api/${aries.application.api.version}/bundle
+bundle 
start-level=30mvn:org.apache.aries.application/org.apache.aries.application.utils/${aries.application.version}/bundle
+bundle 
start-level=30mvn:org.apache.aries.application/org.apache.aries.application.modeller/${aries.application.version}/bundle
+bundle 
start-level=30mvn:org.apache.aries.subsystem/org.apache.aries.subsystem/${aries.subsystem.version}/bundle
+/feature
+
 /features

http://git-wip-us.apache.org/repos/asf/karaf/blob/eb3fb656/itests/src/test/java/org/apache/karaf/itests/features/EnterpriseFeaturesTest.java
--
diff --git 
a/itests/src/test/java/org/apache/karaf/itests/features/EnterpriseFeaturesTest.java
 
b/itests/src/test/java/org/apache/karaf/itests/features/EnterpriseFeaturesTest.java
index 5f27fb3..0ee5260 100644
--- 
a/itests/src/test/java/org/apache/karaf/itests/features/EnterpriseFeaturesTest.java
+++ 
b/itests/src/test/java/org/apache/karaf/itests/features/EnterpriseFeaturesTest.java
@@ -87,4 +87,9 @@ public class EnterpriseFeaturesTest extends KarafTestSupport {
installAssertAndUninstallFeatures(application-without-isolation);
 }
 
+@Test
+public void installSubsystems() throws Exception {
+installAssertAndUninstallFeatures(subsystems);
+}
+
 }

http://git-wip-us.apache.org/repos/asf/karaf/blob/eb3fb656/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 01a6c43..fc446f0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -155,6 +155,7 @@
 equinox.version3.8.2.v20130124-134944/equinox.version
 bndlib.version2.2.0/bndlib.version
 equinox.region.version1.1.0.v20120522-1841/equinox.region.version
+
equinox.coordinator.version1.1.0.v20120522-1841/equinox.coordinator.version
 felix.bundlerepository.version1.6.6/felix.bundlerepository.version
 felix.configadmin.version1.8.0/felix.configadmin.version
 felix.fileinstall.version3.2.8/felix.fileinstall.version
@@ -200,6 +201,7 @@
 aries.jndi.api.version1.0.0/aries.jndi.api.version
 aries.proxy.version1.0.2/aries.proxy.version
 aries.proxy.api.version1.0.0/aries.proxy.api.version
+aries.subsystem.version1.0.0/aries.subsystem.version
 aries.transaction.version1.0.1/aries.transaction.version
 
aries.transaction.manager.version1.1.0/aries.transaction.manager.version
   

[1/2] git commit: [KARAF-2912] Upgrade to equinox region 1.1.0.v20120522-1841

2014-04-14 Thread gnodet
Repository: karaf
Updated Branches:
  refs/heads/master fa2950ab7 - eb3fb6561


[KARAF-2912] Upgrade to equinox region 1.1.0.v20120522-1841


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

Branch: refs/heads/master
Commit: 67f76101ba6ebc065109ec058c39c5081c993769
Parents: fa2950a
Author: Guillaume Nodet gno...@gmail.com
Authored: Mon Apr 14 17:04:49 2014 +0200
Committer: Guillaume Nodet gno...@gmail.com
Committed: Mon Apr 14 17:04:49 2014 +0200

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


http://git-wip-us.apache.org/repos/asf/karaf/blob/67f76101/assemblies/features/standard/pom.xml
--
diff --git a/assemblies/features/standard/pom.xml 
b/assemblies/features/standard/pom.xml
index e693f54..f050441 100644
--- a/assemblies/features/standard/pom.xml
+++ b/assemblies/features/standard/pom.xml
@@ -178,7 +178,7 @@
 !-- region deps --
 dependency
 groupIdorg.eclipse.equinox/groupId
-artifactIdregion/artifactId
+artifactIdorg.eclipse.equinox.region/artifactId
 scopeprovided/scope
 /dependency
 dependency

http://git-wip-us.apache.org/repos/asf/karaf/blob/67f76101/assemblies/features/standard/src/main/feature/feature.xml
--
diff --git a/assemblies/features/standard/src/main/feature/feature.xml 
b/assemblies/features/standard/src/main/feature/feature.xml
index 425922c..f50cd65 100644
--- a/assemblies/features/standard/src/main/feature/feature.xml
+++ b/assemblies/features/standard/src/main/feature/feature.xml
@@ -149,7 +149,7 @@
 
 feature name=region description=Provide Region Support 
version=${project.version}
 bundle dependency=true 
start-level=20mvn:org.apache.aries/org.apache.aries.util/${aries.util.version}/bundle
-bundle 
start-level=30mvn:org.eclipse.equinox/region/${equinox.region.version}/bundle
+bundle 
start-level=30mvn:org.eclipse.equinox/org.eclipse.equinox.region/${equinox.region.version}/bundle
 bundle 
start-level=30mvn:org.apache.karaf.region/org.apache.karaf.region.core/${project.version}/bundle
 /feature
 

http://git-wip-us.apache.org/repos/asf/karaf/blob/67f76101/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 1f18ba1..01a6c43 100644
--- a/pom.xml
+++ b/pom.xml
@@ -154,7 +154,7 @@
 easymock.version3.2/easymock.version
 equinox.version3.8.2.v20130124-134944/equinox.version
 bndlib.version2.2.0/bndlib.version
-equinox.region.version1.0.0.v20110506/equinox.region.version
+equinox.region.version1.1.0.v20120522-1841/equinox.region.version
 felix.bundlerepository.version1.6.6/felix.bundlerepository.version
 felix.configadmin.version1.8.0/felix.configadmin.version
 felix.fileinstall.version3.2.8/felix.fileinstall.version
@@ -1125,7 +1125,7 @@
 
 dependency
 groupIdorg.eclipse.equinox/groupId
-artifactIdregion/artifactId
+artifactIdorg.eclipse.equinox.region/artifactId
 version${equinox.region.version}/version
 /dependency
 



Build failed in Jenkins: karaf-master » Apache Karaf #2515

2014-04-14 Thread Apache Jenkins Server
See 
https://builds.apache.org/job/karaf-master/org.apache.karaf$karaf/2515/changes

Changes:

[gnodet] [KARAF-2903] Upgrade to gemini blueprint 1.0.2

[gnodet] [KARAF-2860] Upgrade to Felix Framework 4.4.0/Felix Framework Security 
2.4.0

[gnodet] [KARAF-2907] Upgrade to ConfigAdmin 1.8.0

[gnodet] [KARAF-2908] Upgrade to hibernate latest 4.2.x and 4.3.x versions

[gnodet] [KARAF-2909] Upgrade to felix gogo runtime 0.12.0

[gnodet] [KARAF-2912] Upgrade to equinox region 1.1.0.v20120522-1841

[gnodet] [KARAF-2911] Support for Aries OSGi subsystems

--
maven3-agent.jar already up to date
maven3-interceptor.jar already up to date
maven3-interceptor-commons.jar already up to date
===[JENKINS REMOTING CAPACITY]===channel started
   log4j:WARN No appenders could be found for logger 
(org.apache.commons.beanutils.converters.BooleanConverter).
log4j:WARN Please initialize the log4j system properly.
Executing Maven:  -B -f 
https://builds.apache.org/job/karaf-master/org.apache.karaf$karaf/ws/pom.xml 
-Dmaven.repo.local=https://builds.apache.org/job/karaf-master/org.apache.karaf$karaf/ws/.repository
 -B -e clean deploy
[INFO] Error stacktraces are turned on.
[INFO] Scanning for projects...
[INFO] 
[INFO] Reactor Build Order:
[INFO] 
[INFO] Apache Karaf
[INFO] Apache Karaf :: Util
[INFO] Apache Karaf :: Main
[INFO] Apache Karaf :: Features
[INFO] Apache Karaf :: Features :: Core
[INFO] Apache Karaf :: JAAS
[INFO] Apache Karaf :: JAAS :: Boot
[INFO] Apache Karaf :: JAAS :: Config
[INFO] Apache Karaf :: JAAS :: Modules
[INFO] Apache Karaf :: Service
[INFO] Apache Karaf :: Service :: Guard
[INFO] Apache Karaf :: Shell
[INFO] Apache Karaf :: Shell :: Core
[INFO] Apache Karaf :: Features :: Command
[INFO] Apache Karaf :: KAR :: Core
[INFO] Apache Karaf :: Region :: Persistence
[INFO] Apache Karaf :: Bundle
[INFO] Apache Karaf :: Bundle :: Core
[INFO] Apache Karaf :: Bundle :: BlueprintStateService
[INFO] Apache Karaf :: Bundle :: SpringStateService
[INFO] Apache Karaf :: ConfigAdmin :: Core
[INFO] Apache Karaf :: Instance :: Core
[INFO] Apache Karaf :: Package :: Core
[INFO] Apache Karaf :: HTTP :: Core
[INFO] Apache Karaf :: Service :: Core
[INFO] Apache Karaf :: Log :: Core
[INFO] Apache Karaf :: Deployer
[INFO] Apache Karaf :: Deployer :: Spring
[INFO] Apache Karaf :: Deployer :: Blueprint
[INFO] Apache Karaf :: Deployer :: Features
[INFO] Apache Karaf :: Deployer :: Karaf Archive (.kar)
[INFO] Apache Karaf :: Deployer :: Wrap Non OSGi Jar
[INFO] Apache Karaf :: Shell :: Various Commands
[INFO] Apache Karaf :: Shell :: Console
[INFO] Apache Karaf :: Shell :: SSH
[INFO] Apache Karaf :: Shell :: Table
[INFO] Apache Karaf :: JAAS :: Jasypt Encryption
[INFO] Apache Karaf :: JAAS :: Command
[INFO] Apache Karaf :: JAAS :: Blueprint
[INFO] Apache Karaf :: JAAS :: Blueprint :: Config
[INFO] Apache Karaf :: JAAS :: Blueprint :: Jasypt
[INFO] Apache Karaf :: Client
[INFO] Apache Karaf :: Management
[INFO] Apache Karaf :: Management :: Boot
[INFO] Apache Karaf :: Management
[INFO] Apache Karaf :: System :: Core
[INFO] Apache Karaf :: Web :: Core
[INFO] Apache Karaf :: Wrapper :: Core
[INFO] Apache Karaf :: Web Console
[INFO] Apache Karaf :: Web Console :: Console
[INFO] Apache Karaf :: Web Console :: Branding
[INFO] Apache Karaf :: Web Console :: Features Plugin
[INFO] Apache Karaf :: Web Console :: Gogo Plugin
[INFO] Apache Karaf :: Web Console :: HTTP Plugin
[INFO] Apache Karaf :: Web Console :: Instance Plugin
[INFO] Apache Karaf :: Exception
[INFO] Apache Karaf :: Scheduler
[INFO] Apache Karaf :: Scheduler :: Core
[INFO] Apache Karaf :: Declarative Services (DS)
[INFO] Apache Karaf :: SCR :: Shell Commands
[INFO] Apache Karaf :: SCR :: Management MBeans
[INFO] Apache Karaf :: SCR :: Examples
[INFO] Apache Karaf :: SCR :: Examples :: Basic Service
[INFO] Apache Karaf :: SCR :: Examples :: Managed Services
[INFO] Apache Karaf :: SCR :: Examples :: Component Factories
[INFO] Apache Karaf :: Diagnostic :: Core
[INFO] Apache Karaf :: OBR :: Core
[INFO] Apache Karaf :: JNDI :: Core
[INFO] Apache Karaf :: JDBC :: Core
[INFO] Apache Karaf :: JMS :: Core
[INFO] Apache Karaf :: Tooling
[INFO] Apache Karaf :: Tooling :: Maven Karaf Plugin
[INFO] Apache Karaf :: Assemblies
[INFO] Apache Karaf :: Assemblies :: Features
[INFO] Apache Karaf :: Assemblies :: Features :: Framework
[INFO] Apache Karaf :: OSGi Services :: EventAdmin
[INFO] Apache Karaf :: Assemblies :: Features :: Standard
[INFO] Apache Karaf :: Assemblies :: Features :: Spring
[INFO] Apache Karaf :: Assemblies :: Features :: Enterprise
[INFO] Apache Karaf :: Assemblies :: Demos
[INFO] Apache Karaf :: Assemblies :: Minimal Distribution
[INFO] Apache Karaf :: Assemblies :: Default Distribution
[INFO] Apache Karaf :: Demos
[INFO] Apache Karaf :: Demos :: Web
[INFO] Apache Karaf :: Demos :: Branding :: Shell
[INFO] Apache Karaf :: Demos :: Command :: Extend Console

Build failed in Jenkins: karaf-master #2515

2014-04-14 Thread Apache Jenkins Server
See https://builds.apache.org/job/karaf-master/2515/changes

Changes:

[gnodet] Clean main jar a bit to avoid unused or duplicate classes

[gnodet] [KARAF-2903] Upgrade to gemini blueprint 1.0.2

[gnodet] [KARAF-2833] Make jdbc independent of blueprint.

[gnodet] [KARAF-2904] Use the osgi extender namespace for blueprint

[gnodet] Fix integration tests

[gnodet] [KARAF-2888] Remove obsolete resolver xml attribute on features

[gnodet] [KARAF-2860] Upgrade to Felix Framework 4.4.0/Felix Framework Security 
2.4.0

[gnodet] [KARAF-2907] Upgrade to ConfigAdmin 1.8.0

[gnodet] [KARAF-2908] Upgrade to hibernate latest 4.2.x and 4.3.x versions

[gnodet] [KARAF-2909] Upgrade to felix gogo runtime 0.12.0

[gnodet] [KARAF-2912] Upgrade to equinox region 1.1.0.v20120522-1841

[gnodet] [KARAF-2911] Support for Aries OSGi subsystems

--
[...truncated 169 lines...]
[INFO] Apache Karaf :: JAAS :: Boot .. SKIPPED
[INFO] Apache Karaf :: JAAS :: Config  SKIPPED
[INFO] Apache Karaf :: JAAS :: Modules ... SKIPPED
[INFO] Apache Karaf :: Service ... SKIPPED
[INFO] Apache Karaf :: Service :: Guard .. SKIPPED
[INFO] Apache Karaf :: Shell . SKIPPED
[INFO] Apache Karaf :: Shell :: Core . SKIPPED
[INFO] Apache Karaf :: Features :: Command ... SKIPPED
[INFO] Apache Karaf :: KAR :: Core ... SKIPPED
[INFO] Apache Karaf :: Region :: Persistence . SKIPPED
[INFO] Apache Karaf :: Bundle  SKIPPED
[INFO] Apache Karaf :: Bundle :: Core  SKIPPED
[INFO] Apache Karaf :: Bundle :: BlueprintStateService ... SKIPPED
[INFO] Apache Karaf :: Bundle :: SpringStateService .. SKIPPED
[INFO] Apache Karaf :: ConfigAdmin :: Core ... SKIPPED
[INFO] Apache Karaf :: Instance :: Core .. SKIPPED
[INFO] Apache Karaf :: Package :: Core ... SKIPPED
[INFO] Apache Karaf :: HTTP :: Core .. SKIPPED
[INFO] Apache Karaf :: Service :: Core ... SKIPPED
[INFO] Apache Karaf :: Log :: Core ... SKIPPED
[INFO] Apache Karaf :: Deployer .. SKIPPED
[INFO] Apache Karaf :: Deployer :: Spring  SKIPPED
[INFO] Apache Karaf :: Deployer :: Blueprint . SKIPPED
[INFO] Apache Karaf :: Deployer :: Features .. SKIPPED
[INFO] Apache Karaf :: Deployer :: Karaf Archive (.kar) .. SKIPPED
[INFO] Apache Karaf :: Deployer :: Wrap Non OSGi Jar . SKIPPED
[INFO] Apache Karaf :: Shell :: Various Commands . SKIPPED
[INFO] Apache Karaf :: Shell :: Console .. SKIPPED
[INFO] Apache Karaf :: Shell :: SSH .. SKIPPED
[INFO] Apache Karaf :: Shell :: Table  SKIPPED
[INFO] Apache Karaf :: JAAS :: Jasypt Encryption . SKIPPED
[INFO] Apache Karaf :: JAAS :: Command ... SKIPPED
[INFO] Apache Karaf :: JAAS :: Blueprint . SKIPPED
[INFO] Apache Karaf :: JAAS :: Blueprint :: Config ... SKIPPED
[INFO] Apache Karaf :: JAAS :: Blueprint :: Jasypt ... SKIPPED
[INFO] Apache Karaf :: Client  SKIPPED
[INFO] Apache Karaf :: Management  SKIPPED
[INFO] Apache Karaf :: Management :: Boot  SKIPPED
[INFO] Apache Karaf :: Management  SKIPPED
[INFO] Apache Karaf :: System :: Core  SKIPPED
[INFO] Apache Karaf :: Web :: Core ... SKIPPED
[INFO] Apache Karaf :: Wrapper :: Core ... SKIPPED
[INFO] Apache Karaf :: Web Console ... SKIPPED
[INFO] Apache Karaf :: Web Console :: Console  SKIPPED
[INFO] Apache Karaf :: Web Console :: Branding ... SKIPPED
[INFO] Apache Karaf :: Web Console :: Features Plugin  SKIPPED
[INFO] Apache Karaf :: Web Console :: Gogo Plugin  SKIPPED
[INFO] Apache Karaf :: Web Console :: HTTP Plugin  SKIPPED
[INFO] Apache Karaf :: Web Console :: Instance Plugin  SKIPPED
[INFO] Apache Karaf :: Exception . SKIPPED
[INFO] Apache Karaf :: Scheduler . SKIPPED
[INFO] Apache Karaf :: Scheduler :: Core . SKIPPED
[INFO] Apache Karaf :: Declarative Services (DS) . SKIPPED
[INFO] Apache Karaf :: SCR :: Shell Commands . SKIPPED
[INFO] Apache Karaf :: SCR :: Management MBeans .. SKIPPED
[INFO] Apache Karaf :: SCR :: Examples ... SKIPPED
[INFO] Apache Karaf :: SCR :: Examples :: Basic Service .. SKIPPED
[INFO] Apache Karaf :: SCR :: Examples :: Managed Services  SKIPPED
[INFO] Apache Karaf :: SCR :: Examples :: Component Factories  SKIPPED
[INFO] Apache Karaf :: Diagnostic :: Core  SKIPPED
[INFO] Apache Karaf :: OBR :: Core ... SKIPPED

Build failed in Jenkins: Karaf-WebConsole #582

2014-04-14 Thread Apache Jenkins Server
See https://builds.apache.org/job/Karaf-WebConsole/582/

--
Started by timer
Building remotely on ubuntu6 (Ubuntu ubuntu) in workspace 
https://builds.apache.org/job/Karaf-WebConsole/ws/
ERROR: A Maven installation needs to be available for this project to be 
built.Either your server has no Maven installations defined, or the requested 
Maven version does not exist.
Retrying after 10 seconds
ERROR: A Maven installation needs to be available for this project to be 
built.Either your server has no Maven installations defined, or the requested 
Maven version does not exist.
Retrying after 10 seconds
ERROR: A Maven installation needs to be available for this project to be 
built.Either your server has no Maven installations defined, or the requested 
Maven version does not exist.



Jenkins build became unstable: karaf-2.3.x » Apache Karaf :: Integration Tests #1152

2014-04-14 Thread Apache Jenkins Server
See 
https://builds.apache.org/job/karaf-2.3.x/org.apache.karaf.itests$itests/1152/



Jenkins build became unstable: karaf-2.3.x #1152

2014-04-14 Thread Apache Jenkins Server
See https://builds.apache.org/job/karaf-2.3.x/1152/