git commit: [KARAF-1545] Update the document about the JDBC locking mechanism and driver loading

2014-07-10 Thread jbonofre
Repository: karaf
Updated Branches:
  refs/heads/karaf-2.x 7ba6261d8 - 07abaf4fe


[KARAF-1545] Update the document about the JDBC locking mechanism and driver 
loading


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

Branch: refs/heads/karaf-2.x
Commit: 07abaf4fe0cef305fe2d840100e1fc5d492a980b
Parents: 7ba6261
Author: Jean-Baptiste Onofré jbono...@apache.org
Authored: Thu Jul 10 08:30:40 2014 +0200
Committer: Jean-Baptiste Onofré jbono...@apache.org
Committed: Thu Jul 10 08:30:40 2014 +0200

--
 manual/src/main/webapp/users-guide/failover.conf | 17 +
 1 file changed, 9 insertions(+), 8 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/07abaf4f/manual/src/main/webapp/users-guide/failover.conf
--
diff --git a/manual/src/main/webapp/users-guide/failover.conf 
b/manual/src/main/webapp/users-guide/failover.conf
index aaa55de..539a317 100644
--- a/manual/src/main/webapp/users-guide/failover.conf
+++ b/manual/src/main/webapp/users-guide/failover.conf
@@ -49,6 +49,11 @@ karaf.lock.jdbc.timeout=30
 * The first Karaf instance to acquire the locking table is the master instance.
 * If the connection to the database is lost, the master instance tries to 
gracefully shutdown, allowing a slave instance to become master when the 
database service is restored. The former master will require a manual restart.
 
+{warning}
+Apache Karaf won't start if the JDBC driver is not present in the {{lib/ext}} 
folder. In order to be loaded correctly,
+the JDBC driver jar file has to be prefixed with {{karaf-}} (for instance the 
{{ojdbc14.jar}} has to be renamed as {{karaf-ojdbc14.jar}} in the {{lib/ext}} 
folder.
+{warning}
+
 h3. JDBC locking on Oracle
 
 If you are using Oracle as your database for JDBC locking, the 
{{karaf.lock.class}} property in the {{$KARAF_HOME/etc/system.properties}} file 
must point to {{org.apache.karaf.main.OracleJDBCLock}}.
@@ -67,13 +72,13 @@ karaf.lock.jdbc.clustername=karaf
 karaf.lock.jdbc.timeout=30
 {noformat}
 
-As with the default JDBC locking setup, the Oracle JDBC driver JAR file must 
be in your classpath. You can ensure this by copying the {{ojdbc14.jar}} into 
Karaf's {{lib}} folder before starting Karaf.
+As with the default JDBC locking setup, the Oracle JDBC driver JAR file must 
be in your classpath. You can ensure this by copying the {{ojdbc14.jar}} into 
Karaf's {{lib/ext}} folder and prefixed with {{karaf-}} before starting Karaf.
 
 *Note*: The {{karaf.lock.jdbc.url}} requires an active SID, which means you 
must manually create a database instance before using this particular lock.
 
 h3. Derby
 
-The same rules apply when using derby.  Make sure you have the driver jar file 
in the Karaf {{lib}} folder before starting Karaf.
+The same rules apply when using derby.  Make sure you have the driver jar file 
in the Karaf {{lib/ext}} folder and prefixed with {{karaf-}} before starting 
Karaf.
 
 Then make you update the properties in {{$KARAF_HOME/etc/system.properties}} 
to look something like this example:
 
@@ -91,9 +96,7 @@ karaf.lock.jdbc.timeout=30
 
 h3. MySQL
 
-Make sure you have the MySQL driver jar file in the Karaf {{lib}} folder 
before starting Karaf.
-
-*NOTE*: for 2.2.x, 2.3.x you need to rename the MySQL Driver jar to prefix 
with 'karaf-' in order for karaf to pick it up, otherwise you will see karaf 
just hang on startup and the log will show you that it could not find the 
driver.
+Make sure you have the MySQL driver jar file in the Karaf {{lib/ext}} folder 
and prefixed with {{karaf-}} before starting Karaf.
 
 Then make you update the properties in {{$KARAF_HOME/etc/system.properties}} 
to look something like this example:
 
@@ -111,9 +114,7 @@ karaf.lock.jdbc.timeout=30
 
 h3. PostgreSQL
 
-Make sure you have the PostgreSQL driver jar file in the Karaf {{lib}} folder 
before starting Karaf.
-
-*NOTE*: for 2.2.x, 2.3.x you need to rename the PostgreSQL Driver jar to 
prefix with 'karaf-' in order for karaf to pick it up, otherwise you will see 
karaf just hang on startup and the log will show you that it could not find the 
driver.
+Make sure you have the PostgreSQL driver jar file in the Karaf {{lib/ext}} 
folder and prefixed with {{karaf-}} before starting Karaf.
 
 Then make you update the properties in {{$KARAF_HOME/etc/system.properties}} 
to look something like this example:
 



git commit: [KARAF-1545] Update the document about the JDBC locking mechanism and driver loading

2014-07-10 Thread jbonofre
Repository: karaf
Updated Branches:
  refs/heads/karaf-2.3.x 875b5a27b - 36d9ef5e0


[KARAF-1545] Update the document about the JDBC locking mechanism and driver 
loading


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

Branch: refs/heads/karaf-2.3.x
Commit: 36d9ef5e064ad7e3285478aeef30c94f0197401d
Parents: 875b5a2
Author: Jean-Baptiste Onofré jbono...@apache.org
Authored: Thu Jul 10 08:30:40 2014 +0200
Committer: Jean-Baptiste Onofré jbono...@apache.org
Committed: Thu Jul 10 08:31:28 2014 +0200

--
 manual/src/main/webapp/users-guide/failover.conf | 17 +
 1 file changed, 9 insertions(+), 8 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/36d9ef5e/manual/src/main/webapp/users-guide/failover.conf
--
diff --git a/manual/src/main/webapp/users-guide/failover.conf 
b/manual/src/main/webapp/users-guide/failover.conf
index aaa55de..539a317 100644
--- a/manual/src/main/webapp/users-guide/failover.conf
+++ b/manual/src/main/webapp/users-guide/failover.conf
@@ -49,6 +49,11 @@ karaf.lock.jdbc.timeout=30
 * The first Karaf instance to acquire the locking table is the master instance.
 * If the connection to the database is lost, the master instance tries to 
gracefully shutdown, allowing a slave instance to become master when the 
database service is restored. The former master will require a manual restart.
 
+{warning}
+Apache Karaf won't start if the JDBC driver is not present in the {{lib/ext}} 
folder. In order to be loaded correctly,
+the JDBC driver jar file has to be prefixed with {{karaf-}} (for instance the 
{{ojdbc14.jar}} has to be renamed as {{karaf-ojdbc14.jar}} in the {{lib/ext}} 
folder.
+{warning}
+
 h3. JDBC locking on Oracle
 
 If you are using Oracle as your database for JDBC locking, the 
{{karaf.lock.class}} property in the {{$KARAF_HOME/etc/system.properties}} file 
must point to {{org.apache.karaf.main.OracleJDBCLock}}.
@@ -67,13 +72,13 @@ karaf.lock.jdbc.clustername=karaf
 karaf.lock.jdbc.timeout=30
 {noformat}
 
-As with the default JDBC locking setup, the Oracle JDBC driver JAR file must 
be in your classpath. You can ensure this by copying the {{ojdbc14.jar}} into 
Karaf's {{lib}} folder before starting Karaf.
+As with the default JDBC locking setup, the Oracle JDBC driver JAR file must 
be in your classpath. You can ensure this by copying the {{ojdbc14.jar}} into 
Karaf's {{lib/ext}} folder and prefixed with {{karaf-}} before starting Karaf.
 
 *Note*: The {{karaf.lock.jdbc.url}} requires an active SID, which means you 
must manually create a database instance before using this particular lock.
 
 h3. Derby
 
-The same rules apply when using derby.  Make sure you have the driver jar file 
in the Karaf {{lib}} folder before starting Karaf.
+The same rules apply when using derby.  Make sure you have the driver jar file 
in the Karaf {{lib/ext}} folder and prefixed with {{karaf-}} before starting 
Karaf.
 
 Then make you update the properties in {{$KARAF_HOME/etc/system.properties}} 
to look something like this example:
 
@@ -91,9 +96,7 @@ karaf.lock.jdbc.timeout=30
 
 h3. MySQL
 
-Make sure you have the MySQL driver jar file in the Karaf {{lib}} folder 
before starting Karaf.
-
-*NOTE*: for 2.2.x, 2.3.x you need to rename the MySQL Driver jar to prefix 
with 'karaf-' in order for karaf to pick it up, otherwise you will see karaf 
just hang on startup and the log will show you that it could not find the 
driver.
+Make sure you have the MySQL driver jar file in the Karaf {{lib/ext}} folder 
and prefixed with {{karaf-}} before starting Karaf.
 
 Then make you update the properties in {{$KARAF_HOME/etc/system.properties}} 
to look something like this example:
 
@@ -111,9 +114,7 @@ karaf.lock.jdbc.timeout=30
 
 h3. PostgreSQL
 
-Make sure you have the PostgreSQL driver jar file in the Karaf {{lib}} folder 
before starting Karaf.
-
-*NOTE*: for 2.2.x, 2.3.x you need to rename the PostgreSQL Driver jar to 
prefix with 'karaf-' in order for karaf to pick it up, otherwise you will see 
karaf just hang on startup and the log will show you that it could not find the 
driver.
+Make sure you have the PostgreSQL driver jar file in the Karaf {{lib/ext}} 
folder and prefixed with {{karaf-}} before starting Karaf.
 
 Then make you update the properties in {{$KARAF_HOME/etc/system.properties}} 
to look something like this example:
 



Build failed in Jenkins: karaf-master #2630

2014-07-10 Thread Apache Jenkins Server
See https://builds.apache.org/job/karaf-master/2630/changes

Changes:

[jbonofre] [KARAF-1137] Fix rendering of the bundle:info command

--
[...truncated 733 lines...]
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 9245 bytes
Compression is 0.0%
Took 86 ms
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/webconsole/gogo/pom.xml to 
org.apache.karaf.webconsole/org.apache.karaf.webconsole.gogo/4.0.0-SNAPSHOT/org.apache.karaf.webconsole.gogo-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Web Console 
:: Gogo Plugin #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 5112 bytes
Compression is 0.0%
Took 1.7 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/bundle/springstate/pom.xml to 
org.apache.karaf.bundle/org.apache.karaf.bundle.springstate/4.0.0-SNAPSHOT/org.apache.karaf.bundle.springstate-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Bundle :: 
SpringStateService #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 4150 bytes
Compression is 0.0%
Took 0.1 sec
[JENKINS] Archiving https://builds.apache.org/job/karaf-master/ws/log/pom.xml 
to 
org.apache.karaf.log/org.apache.karaf.log.core/4.0.0-SNAPSHOT/org.apache.karaf.log.core-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Log :: Core 
#2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 5306 bytes
Compression is 0.0%
Took 0.11 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/demos/deployer/kar/pom.xml to 
org.apache.karaf.demos/my-kar/4.0.0-SNAPSHOT/my-kar-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Demos :: 
Deployer :: Kar #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 2624 bytes
Compression is 0.0%
Took 0.19 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/shell/table/pom.xml to 
org.apache.karaf.shell/org.apache.karaf.shell.table/4.0.0-SNAPSHOT/org.apache.karaf.shell.table-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Shell :: 
Table #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 2714 bytes
Compression is 0.0%
Took 72 ms
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/shell/commands/pom.xml to 
org.apache.karaf.shell/org.apache.karaf.shell.commands/4.0.0-SNAPSHOT/org.apache.karaf.shell.commands-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Shell :: 
Various Commands #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 4959 bytes
Compression is 0.0%
Took 0.1 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/tooling/karaf-maven-plugin/pom.xml
 to 
org.apache.karaf.tooling/karaf-maven-plugin/4.0.0-SNAPSHOT/karaf-maven-plugin-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Tooling :: 
Maven Karaf Plugin #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 9177 bytes
Compression is 0.0%
Took 1.8 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/demos/web/pom.xml to 
org.apache.karaf.demos/web/4.0.0-SNAPSHOT/web-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Demos :: Web 
#2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 7026 bytes
Compression is 0.0%
Took 0.36 sec
[JENKINS] Archiving https://builds.apache.org/job/karaf-master/ws/jms/pom.xml 
to 
org.apache.karaf.jms/org.apache.karaf.jms.core/4.0.0-SNAPSHOT/org.apache.karaf.jms.core-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: JMS :: Core 
#2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 4457 bytes
Compression is 0.0%
Took 0.17 sec
[JENKINS] Archiving https://builds.apache.org/job/karaf-master/ws/jpa/pom.xml 
to org.apache.karaf.jpa/jpa-parent/4.0.0-SNAPSHOT/jpa-parent-4.0.0-SNAPSHOT.pom
No prior successful build to compare, so performing full copy of artifacts
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/demos/dump/pom.xml to 
org.apache.karaf.demos/dump/4.0.0-SNAPSHOT/dump-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Demos :: Demo 
Dump provider #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 2530 bytes
Compression is 0.0%
Took 0.14 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/webconsole/instance/pom.xml to 
org.apache.karaf.webconsole/org.apache.karaf.webconsole.instance/4.0.0-SNAPSHOT/org.apache.karaf.webconsole.instance-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Web Console 
:: Instance Plugin #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks 

Build failed in Jenkins: karaf-2.3.x » Apache Karaf :: Integration Tests #1228

2014-07-10 Thread Apache Jenkins Server
See 
https://builds.apache.org/job/karaf-2.3.x/org.apache.karaf.itests$itests/1228/

--
[INFO] 
[INFO] 
[INFO] Building Apache Karaf :: Integration Tests 2.3.6-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ itests ---
[INFO] Deleting 
https://builds.apache.org/job/karaf-2.3.x/org.apache.karaf.itests$itests/ws/target


Build failed in Jenkins: karaf-2.3.x #1228

2014-07-10 Thread Apache Jenkins Server
See https://builds.apache.org/job/karaf-2.3.x/1228/changes

Changes:

[jbonofre] [KARAF-1545] Update the document about the JDBC locking mechanism 
and driver loading

--
[...truncated 10601 lines...]
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/webconsole/features/pom.xml to 
org.apache.karaf.webconsole/org.apache.karaf.webconsole.features/2.3.6-SNAPSHOT/org.apache.karaf.webconsole.features-2.3.6-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/webconsole/features/target/org.apache.karaf.webconsole.features-2.3.6-SNAPSHOT.jar
 to 
org.apache.karaf.webconsole/org.apache.karaf.webconsole.features/2.3.6-20140710.065736-70/org.apache.karaf.webconsole.features-2.3.6-20140710.065736-70.jar
No artifacts from karaf-2.3.x ? Apache Karaf :: Web Console :: Features Plugin 
#1227 to compare, so performing full copy of artifacts
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/tooling/pom.xml to 
org.apache.karaf.tooling/tooling/2.3.6-SNAPSHOT/tooling-2.3.6-SNAPSHOT.pom
No artifacts from karaf-2.3.x ? Apache Karaf :: Tooling #1227 to compare, so 
performing full copy of artifacts
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/features/command/pom.xml to 
org.apache.karaf.features/org.apache.karaf.features.command/2.3.6-SNAPSHOT/org.apache.karaf.features.command-2.3.6-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/features/command/target/org.apache.karaf.features.command-2.3.6-SNAPSHOT.jar
 to 
org.apache.karaf.features/org.apache.karaf.features.command/2.3.6-20140710.064934-74/org.apache.karaf.features.command-2.3.6-20140710.064934-74.jar
No artifacts from karaf-2.3.x ? Apache Karaf :: Features :: Command #1227 to 
compare, so performing full copy of artifacts
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/features/management/pom.xml to 
org.apache.karaf.features/org.apache.karaf.features.management/2.3.6-SNAPSHOT/org.apache.karaf.features.management-2.3.6-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/features/management/target/org.apache.karaf.features.management-2.3.6-SNAPSHOT.jar
 to 
org.apache.karaf.features/org.apache.karaf.features.management/2.3.6-20140710.064956-74/org.apache.karaf.features.management-2.3.6-20140710.064956-74.jar
No artifacts from karaf-2.3.x ? Apache Karaf :: Features :: Management #1227 to 
compare, so performing full copy of artifacts
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/deployer/kar/pom.xml to 
org.apache.karaf.deployer/org.apache.karaf.deployer.kar/2.3.6-SNAPSHOT/org.apache.karaf.deployer.kar-2.3.6-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/deployer/kar/target/org.apache.karaf.deployer.kar-2.3.6-SNAPSHOT.jar
 to 
org.apache.karaf.deployer/org.apache.karaf.deployer.kar/2.3.6-20140710.065127-74/org.apache.karaf.deployer.kar-2.3.6-20140710.065127-74.jar
No artifacts from karaf-2.3.x ? Apache Karaf :: Deployer :: Karaf Archive 
(.kar) #1227 to compare, so performing full copy of artifacts
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/itests/pom.xml to 
org.apache.karaf.itests/itests/2.3.6-SNAPSHOT/itests-2.3.6-SNAPSHOT.pom
Sending artifact delta relative to karaf-2.3.x ? Apache Karaf :: Integration 
Tests #1192
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 5398 bytes
Compression is 0.0%
Took 0.55 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/diagnostic/common/pom.xml to 
org.apache.karaf.diagnostic/org.apache.karaf.diagnostic.common/2.3.6-SNAPSHOT/org.apache.karaf.diagnostic.common-2.3.6-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/diagnostic/common/target/org.apache.karaf.diagnostic.common-2.3.6-SNAPSHOT.jar
 to 
org.apache.karaf.diagnostic/org.apache.karaf.diagnostic.common/2.3.6-20140710.065905-70/org.apache.karaf.diagnostic.common-2.3.6-20140710.065905-70.jar
No artifacts from karaf-2.3.x ? Apache Karaf :: Diagnostic :: Common #1227 to 
compare, so performing full copy of artifacts
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/management/server/pom.xml to 
org.apache.karaf.management/org.apache.karaf.management.server/2.3.6-SNAPSHOT/org.apache.karaf.management.server-2.3.6-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/management/server/target/org.apache.karaf.management.server-2.3.6-SNAPSHOT.jar
 to 
org.apache.karaf.management/org.apache.karaf.management.server/2.3.6-20140710.064946-74/org.apache.karaf.management.server-2.3.6-20140710.064946-74.jar
No artifacts from karaf-2.3.x ? Apache Karaf :: Management #1227 to compare, so 
performing full copy of artifacts
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/management/mbeans/packages/pom.xml
 to 

Build failed in Jenkins: karaf-2.x » Apache Karaf :: Integration Tests #167

2014-07-10 Thread Apache Jenkins Server
See 
https://builds.apache.org/job/karaf-2.x/org.apache.karaf.itests$itests/167/

--
[INFO] 
[INFO] 
[INFO] Building Apache Karaf :: Integration Tests 2.4.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ itests ---
[INFO] Deleting 
https://builds.apache.org/job/karaf-2.x/org.apache.karaf.itests$itests/ws/target


Build failed in Jenkins: karaf-2.x #167

2014-07-10 Thread Apache Jenkins Server
See https://builds.apache.org/job/karaf-2.x/167/changes

Changes:

[jbonofre] [KARAF-1545] Update the document about the JDBC locking mechanism 
and driver loading

--
[...truncated 16787 lines...]
[JENKINS] Archiving https://builds.apache.org/job/karaf-2.x/ws/shell/pom.xml 
to org.apache.karaf.shell/shell/2.4.0-SNAPSHOT/shell-2.4.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Shell #166
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 1999 bytes
Compression is 0.0%
Took 0.24 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/archetypes/bundle/pom.xml to 
org.apache.karaf.archetypes/karaf-bundle-archetype/2.4.0-SNAPSHOT/karaf-bundle-archetype-2.4.0-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/archetypes/bundle/target/karaf-bundle-archetype-2.4.0-SNAPSHOT.jar
 to 
org.apache.karaf.archetypes/karaf-bundle-archetype/2.4.0-20140710.074224-136/karaf-bundle-archetype-2.4.0-20140710.074224-136.jar
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Archetypes :: 
Bundle Archetype #166
Archived 2 artifacts
Archive block size is 32768
Received 0 blocks and 11318 bytes
Compression is 0.0%
Took 0.19 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/admin/core/pom.xml to 
org.apache.karaf.admin/org.apache.karaf.admin.core/2.4.0-SNAPSHOT/org.apache.karaf.admin.core-2.4.0-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/admin/core/target/org.apache.karaf.admin.core-2.4.0-SNAPSHOT.jar
 to 
org.apache.karaf.admin/org.apache.karaf.admin.core/2.4.0-20140710.072208-148/org.apache.karaf.admin.core-2.4.0-20140710.072208-148.jar
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Admin :: Core 
#166
Archived 2 artifacts
Archive block size is 32768
Received 0 blocks and 141930 bytes
Compression is 0.0%
Took 0.57 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/shell/config/pom.xml to 
org.apache.karaf.shell/org.apache.karaf.shell.config/2.4.0-SNAPSHOT/org.apache.karaf.shell.config-2.4.0-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/shell/config/target/org.apache.karaf.shell.config-2.4.0-SNAPSHOT.jar
 to 
org.apache.karaf.shell/org.apache.karaf.shell.config/2.4.0-20140710.072504-145/org.apache.karaf.shell.config-2.4.0-20140710.072504-145.jar
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Shell :: 
ConfigAdmin Commands #166
Archived 2 artifacts
Archive block size is 32768
Received 0 blocks and 101273 bytes
Compression is 0.0%
Took 0.24 sec
[JENKINS] Archiving https://builds.apache.org/job/karaf-2.x/ws/pom.xml to 
org.apache.karaf/karaf/2.4.0-SNAPSHOT/karaf-2.4.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-2.x ? Apache Karaf #166
Archived 1 artifacts
Archive block size is 32768
Received 2 blocks and 19188 bytes
Compression is 77.4%
Took 0.37 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/shell/packages/pom.xml to 
org.apache.karaf.shell/org.apache.karaf.shell.packages/2.4.0-SNAPSHOT/org.apache.karaf.shell.packages-2.4.0-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/shell/packages/target/org.apache.karaf.shell.packages-2.4.0-SNAPSHOT.jar
 to 
org.apache.karaf.shell/org.apache.karaf.shell.packages/2.4.0-20140710.072652-143/org.apache.karaf.shell.packages-2.4.0-20140710.072652-143.jar
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Shell :: 
PackageAdmin Commands #166
Archived 2 artifacts
Archive block size is 32768
Received 0 blocks and 22210 bytes
Compression is 0.0%
Took 0.18 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/demos/deployer/wrap/dependency-reduced-pom.xml
 to 
org.apache.karaf.demos.deployer.wrap/osgi.commons-lang/2.4.0-SNAPSHOT/osgi.commons-lang-2.4.0-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/demos/deployer/wrap/target/osgi.commons-lang-2.4.0-SNAPSHOT.jar
 to 
org.apache.karaf.demos.deployer.wrap/osgi.commons-lang/2.4.0-20140710.074031-138/osgi.commons-lang-2.4.0-20140710.074031-138.jar
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Demos :: 
Deployer :: Wrap Bundle osgi.commons-lang #166
Archived 2 artifacts
Archive block size is 32768
Received 0 blocks and 274397 bytes
Compression is 0.0%
Took 1.8 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/archetypes/assembly/pom.xml to 
org.apache.karaf.archetypes/karaf-assembly-archetype/2.4.0-SNAPSHOT/karaf-assembly-archetype-2.4.0-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/archetypes/assembly/target/karaf-assembly-archetype-2.4.0-SNAPSHOT.jar
 to 
org.apache.karaf.archetypes/karaf-assembly-archetype/2.4.0-20140710.074144-136/karaf-assembly-archetype-2.4.0-20140710.074144-136.jar
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Archetypes :: 
Assembly Archetype #166
Archived 2 artifacts

git commit: [KARAF-1545] Fix failover documentation about the installation of the JDBC driver

2014-07-10 Thread jbonofre
Repository: karaf
Updated Branches:
  refs/heads/master 9ddc2a751 - 2cc74ed90


[KARAF-1545] Fix failover documentation about the installation of the JDBC 
driver


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

Branch: refs/heads/master
Commit: 2cc74ed9094f9492245d5d2326febe4a45fefdc3
Parents: 9ddc2a7
Author: Jean-Baptiste Onofré jbono...@apache.org
Authored: Thu Jul 10 11:16:30 2014 +0200
Committer: Jean-Baptiste Onofré jbono...@apache.org
Committed: Thu Jul 10 11:16:30 2014 +0200

--
 manual/src/main/webapp/users-guide/failover.conf | 13 ++---
 1 file changed, 6 insertions(+), 7 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/2cc74ed9/manual/src/main/webapp/users-guide/failover.conf
--
diff --git a/manual/src/main/webapp/users-guide/failover.conf 
b/manual/src/main/webapp/users-guide/failover.conf
index 12497e7..b35c636 100644
--- a/manual/src/main/webapp/users-guide/failover.conf
+++ b/manual/src/main/webapp/users-guide/failover.conf
@@ -83,8 +83,7 @@ karaf.lock.jdbc.timeout=30
 * {{karaf.lock.jdbc.table}} property contains the database table to use for 
the lock.
 
 {warning}
-Apache Karaf won't start if the JDBC driver is not present in the {{lib/ext}} 
folder. In order to be loaded correctly,
-the JDBC driver jar file has to be prefixed with {{karaf-}} (for instance the 
{{ojdbc14.jar}} has to be renamed as {{karaf-ojdbc14.jar}} in the {{lib/ext}} 
folder.
+Apache Karaf won't start if the JDBC driver is not present in the {{lib/ext}} 
folder.
 {warning}
 
 {warning}
@@ -112,7 +111,7 @@ karaf.lock.jdbc.clustername=karaf
 karaf.lock.jdbc.timeout=30
 {code}
 
-The {{ojdbc*.jar}} JDBC driver file has to be copied as 
{{lib/ext/karaf-ojdbc*.jar}}.
+The Oracle JDBC driver file ({{ojdbc*.jar}}) has to be copied in the 
{{lib/ext}} folder.
 
 {warning}
 The {{karaf.lock.jdbc.url}} property contains a JDBC URL which requires an 
active SID. It means that you must manually create the Oracle
@@ -135,7 +134,7 @@ karaf.lock.jdbc.clustername=karaf
 karaf.lock.jdbc.timeout=30
 {code}
 
-The Derby JDBC driver file name has to be copied in the {{lib/ext}} folder 
with the {{karaf-}} prefix.
+The Derby JDBC driver file name has to be copied in the {{lib/ext}} folder.
 
 h4.Lock on MySQL
 
@@ -153,7 +152,7 @@ karaf.lock.jdbc.clustername=karaf
 karaf.lock.jdbc.timeout=30
 {code}
 
-The MySQL JDBC driver file name has to be copied in {{lib/ext}} folder with 
the {{karaf-}} prefix.
+The MySQL JDBC driver file name has to be copied in {{lib/ext}} folder.
 
 h4. Lock on PostgreSQL
 
@@ -171,7 +170,7 @@ karaf.lock.jdbc.clustername=karaf
 karaf.lock.jdbc.timeout=0
 {code}
 
-The PostgreSQL JDBC driver file has to be copied in the {{lib/ext}} folder 
with the {{karaf-}} prefix.
+The PostgreSQL JDBC driver file has to be copied in the {{lib/ext}} folder.
 
 h4. Lock on Microsoft SQLServer
 
@@ -191,7 +190,7 @@ karaf.lock.jdbc.clustername=karaf
 karaf.lock.jdbc.timeout=30
 {code}
 
-The JTDS JDBC driver file has to be copied in the {{lib/ext}} folder with the 
{{karaf-}} prefix.
+The JTDS JDBC driver file has to be copied in the {{lib/ext}} folder.
 
 h3. Container-level locking
 



git commit: [KARAF-1545] Fix failover documentation about the installation of the JDBC driver

2014-07-10 Thread jbonofre
Repository: karaf
Updated Branches:
  refs/heads/karaf-3.0.x 19b909e38 - 08dca7aa7


[KARAF-1545] Fix failover documentation about the installation of the JDBC 
driver


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

Branch: refs/heads/karaf-3.0.x
Commit: 08dca7aa79ab417c6b9c6cda92a599f9ca798dc1
Parents: 19b909e
Author: Jean-Baptiste Onofré jbono...@apache.org
Authored: Thu Jul 10 11:16:30 2014 +0200
Committer: Jean-Baptiste Onofré jbono...@apache.org
Committed: Thu Jul 10 11:17:47 2014 +0200

--
 manual/src/main/webapp/users-guide/failover.conf | 13 ++---
 1 file changed, 6 insertions(+), 7 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/08dca7aa/manual/src/main/webapp/users-guide/failover.conf
--
diff --git a/manual/src/main/webapp/users-guide/failover.conf 
b/manual/src/main/webapp/users-guide/failover.conf
index 12497e7..b35c636 100644
--- a/manual/src/main/webapp/users-guide/failover.conf
+++ b/manual/src/main/webapp/users-guide/failover.conf
@@ -83,8 +83,7 @@ karaf.lock.jdbc.timeout=30
 * {{karaf.lock.jdbc.table}} property contains the database table to use for 
the lock.
 
 {warning}
-Apache Karaf won't start if the JDBC driver is not present in the {{lib/ext}} 
folder. In order to be loaded correctly,
-the JDBC driver jar file has to be prefixed with {{karaf-}} (for instance the 
{{ojdbc14.jar}} has to be renamed as {{karaf-ojdbc14.jar}} in the {{lib/ext}} 
folder.
+Apache Karaf won't start if the JDBC driver is not present in the {{lib/ext}} 
folder.
 {warning}
 
 {warning}
@@ -112,7 +111,7 @@ karaf.lock.jdbc.clustername=karaf
 karaf.lock.jdbc.timeout=30
 {code}
 
-The {{ojdbc*.jar}} JDBC driver file has to be copied as 
{{lib/ext/karaf-ojdbc*.jar}}.
+The Oracle JDBC driver file ({{ojdbc*.jar}}) has to be copied in the 
{{lib/ext}} folder.
 
 {warning}
 The {{karaf.lock.jdbc.url}} property contains a JDBC URL which requires an 
active SID. It means that you must manually create the Oracle
@@ -135,7 +134,7 @@ karaf.lock.jdbc.clustername=karaf
 karaf.lock.jdbc.timeout=30
 {code}
 
-The Derby JDBC driver file name has to be copied in the {{lib/ext}} folder 
with the {{karaf-}} prefix.
+The Derby JDBC driver file name has to be copied in the {{lib/ext}} folder.
 
 h4.Lock on MySQL
 
@@ -153,7 +152,7 @@ karaf.lock.jdbc.clustername=karaf
 karaf.lock.jdbc.timeout=30
 {code}
 
-The MySQL JDBC driver file name has to be copied in {{lib/ext}} folder with 
the {{karaf-}} prefix.
+The MySQL JDBC driver file name has to be copied in {{lib/ext}} folder.
 
 h4. Lock on PostgreSQL
 
@@ -171,7 +170,7 @@ karaf.lock.jdbc.clustername=karaf
 karaf.lock.jdbc.timeout=0
 {code}
 
-The PostgreSQL JDBC driver file has to be copied in the {{lib/ext}} folder 
with the {{karaf-}} prefix.
+The PostgreSQL JDBC driver file has to be copied in the {{lib/ext}} folder.
 
 h4. Lock on Microsoft SQLServer
 
@@ -191,7 +190,7 @@ karaf.lock.jdbc.clustername=karaf
 karaf.lock.jdbc.timeout=30
 {code}
 
-The JTDS JDBC driver file has to be copied in the {{lib/ext}} folder with the 
{{karaf-}} prefix.
+The JTDS JDBC driver file has to be copied in the {{lib/ext}} folder.
 
 h3. Container-level locking
 



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

2014-07-10 Thread Apache Jenkins Server
See 
https://builds.apache.org/job/karaf-master/org.apache.karaf$karaf/2631/changes

Changes:

[jbonofre] [KARAF-1545] Fix failover documentation about the installation of 
the JDBC driver

--
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 :: JAAS
[INFO] Apache Karaf :: JAAS :: Boot
[INFO] Apache Karaf :: Util
[INFO] Apache Karaf :: Main
[INFO] Apache Karaf :: Features
[INFO] Apache Karaf :: Tooling
[INFO] Apache Karaf :: Tooling :: Maven Karaf Plugin for Services Metadata
[INFO] Apache Karaf :: Features :: Core
[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 :: 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 :: 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 :: 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 :: JPA :: Parent
[INFO] hibernate
[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 :: OSGi Services :: Coordinator
[INFO] Apache Karaf :: Subsystem :: Core
[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
[INFO] Apache Karaf :: Demos :: Demo Dump provider
[INFO] Apache Karaf :: Demos :: Deployer
[INFO] Apache Karaf :: Demos :: Deployer :: Kar
[INFO] Apache Karaf :: Demos :: Deployer :: Bundle
[INFO] Apache Karaf :: Archetypes
[INFO] Apache Karaf :: Archetypes :: Assembly 

Build failed in Jenkins: karaf-master #2631

2014-07-10 Thread Apache Jenkins Server
See https://builds.apache.org/job/karaf-master/2631/changes

Changes:

[jbonofre] [KARAF-1545] Fix failover documentation about the installation of 
the JDBC driver

--
[...truncated 733 lines...]
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 9245 bytes
Compression is 0.0%
Took 0.12 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/webconsole/gogo/pom.xml to 
org.apache.karaf.webconsole/org.apache.karaf.webconsole.gogo/4.0.0-SNAPSHOT/org.apache.karaf.webconsole.gogo-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Web Console 
:: Gogo Plugin #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 5112 bytes
Compression is 0.0%
Took 0.12 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/bundle/springstate/pom.xml to 
org.apache.karaf.bundle/org.apache.karaf.bundle.springstate/4.0.0-SNAPSHOT/org.apache.karaf.bundle.springstate-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Bundle :: 
SpringStateService #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 4150 bytes
Compression is 0.0%
Took 97 ms
[JENKINS] Archiving https://builds.apache.org/job/karaf-master/ws/log/pom.xml 
to 
org.apache.karaf.log/org.apache.karaf.log.core/4.0.0-SNAPSHOT/org.apache.karaf.log.core-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Log :: Core 
#2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 5306 bytes
Compression is 0.0%
Took 0.13 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/demos/deployer/kar/pom.xml to 
org.apache.karaf.demos/my-kar/4.0.0-SNAPSHOT/my-kar-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Demos :: 
Deployer :: Kar #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 2624 bytes
Compression is 0.0%
Took 1.6 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/shell/table/pom.xml to 
org.apache.karaf.shell/org.apache.karaf.shell.table/4.0.0-SNAPSHOT/org.apache.karaf.shell.table-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Shell :: 
Table #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 2714 bytes
Compression is 0.0%
Took 0.29 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/shell/commands/pom.xml to 
org.apache.karaf.shell/org.apache.karaf.shell.commands/4.0.0-SNAPSHOT/org.apache.karaf.shell.commands-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Shell :: 
Various Commands #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 4959 bytes
Compression is 0.0%
Took 0.13 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/tooling/karaf-maven-plugin/pom.xml
 to 
org.apache.karaf.tooling/karaf-maven-plugin/4.0.0-SNAPSHOT/karaf-maven-plugin-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Tooling :: 
Maven Karaf Plugin #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 9177 bytes
Compression is 0.0%
Took 0.11 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/demos/web/pom.xml to 
org.apache.karaf.demos/web/4.0.0-SNAPSHOT/web-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Demos :: Web 
#2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 7026 bytes
Compression is 0.0%
Took 0.26 sec
[JENKINS] Archiving https://builds.apache.org/job/karaf-master/ws/jms/pom.xml 
to 
org.apache.karaf.jms/org.apache.karaf.jms.core/4.0.0-SNAPSHOT/org.apache.karaf.jms.core-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: JMS :: Core 
#2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 4457 bytes
Compression is 0.0%
Took 1.8 sec
[JENKINS] Archiving https://builds.apache.org/job/karaf-master/ws/jpa/pom.xml 
to org.apache.karaf.jpa/jpa-parent/4.0.0-SNAPSHOT/jpa-parent-4.0.0-SNAPSHOT.pom
No prior successful build to compare, so performing full copy of artifacts
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/demos/dump/pom.xml to 
org.apache.karaf.demos/dump/4.0.0-SNAPSHOT/dump-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Demos :: Demo 
Dump provider #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 2530 bytes
Compression is 0.0%
Took 0.16 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/webconsole/instance/pom.xml to 
org.apache.karaf.webconsole/org.apache.karaf.webconsole.instance/4.0.0-SNAPSHOT/org.apache.karaf.webconsole.instance-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Web Console 
:: Instance Plugin #2488
Archived 1 artifacts
Archive block 

git commit: [KARAF-1545] Fix failover documentation about the installation of the JDBC driver

2014-07-10 Thread jbonofre
Repository: karaf
Updated Branches:
  refs/heads/karaf-2.x 07abaf4fe - 892528f48


[KARAF-1545] Fix failover documentation about the installation of the JDBC 
driver


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

Branch: refs/heads/karaf-2.x
Commit: 892528f4848a817419335aa65e75bce230873ac5
Parents: 07abaf4
Author: Jean-Baptiste Onofré jbono...@apache.org
Authored: Thu Jul 10 11:39:01 2014 +0200
Committer: Jean-Baptiste Onofré jbono...@apache.org
Committed: Thu Jul 10 11:39:01 2014 +0200

--
 manual/src/main/webapp/users-guide/failover.conf | 11 +--
 1 file changed, 5 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/892528f4/manual/src/main/webapp/users-guide/failover.conf
--
diff --git a/manual/src/main/webapp/users-guide/failover.conf 
b/manual/src/main/webapp/users-guide/failover.conf
index 539a317..63a2aa5 100644
--- a/manual/src/main/webapp/users-guide/failover.conf
+++ b/manual/src/main/webapp/users-guide/failover.conf
@@ -50,8 +50,7 @@ karaf.lock.jdbc.timeout=30
 * If the connection to the database is lost, the master instance tries to 
gracefully shutdown, allowing a slave instance to become master when the 
database service is restored. The former master will require a manual restart.
 
 {warning}
-Apache Karaf won't start if the JDBC driver is not present in the {{lib/ext}} 
folder. In order to be loaded correctly,
-the JDBC driver jar file has to be prefixed with {{karaf-}} (for instance the 
{{ojdbc14.jar}} has to be renamed as {{karaf-ojdbc14.jar}} in the {{lib/ext}} 
folder.
+Apache Karaf won't start if the JDBC driver is not present in the {{lib/ext}} 
folder.
 {warning}
 
 h3. JDBC locking on Oracle
@@ -72,13 +71,13 @@ karaf.lock.jdbc.clustername=karaf
 karaf.lock.jdbc.timeout=30
 {noformat}
 
-As with the default JDBC locking setup, the Oracle JDBC driver JAR file must 
be in your classpath. You can ensure this by copying the {{ojdbc14.jar}} into 
Karaf's {{lib/ext}} folder and prefixed with {{karaf-}} before starting Karaf.
+Make sure you have the Oracle JDBC driver in the {{lib/ext}} folder.
 
 *Note*: The {{karaf.lock.jdbc.url}} requires an active SID, which means you 
must manually create a database instance before using this particular lock.
 
 h3. Derby
 
-The same rules apply when using derby.  Make sure you have the driver jar file 
in the Karaf {{lib/ext}} folder and prefixed with {{karaf-}} before starting 
Karaf.
+Make sure you have the driver jar file in the Karaf {{lib/ext}} folder.
 
 Then make you update the properties in {{$KARAF_HOME/etc/system.properties}} 
to look something like this example:
 
@@ -96,7 +95,7 @@ karaf.lock.jdbc.timeout=30
 
 h3. MySQL
 
-Make sure you have the MySQL driver jar file in the Karaf {{lib/ext}} folder 
and prefixed with {{karaf-}} before starting Karaf.
+Make sure you have the MySQL driver jar file in the Karaf {{lib/ext}} folder.
 
 Then make you update the properties in {{$KARAF_HOME/etc/system.properties}} 
to look something like this example:
 
@@ -114,7 +113,7 @@ karaf.lock.jdbc.timeout=30
 
 h3. PostgreSQL
 
-Make sure you have the PostgreSQL driver jar file in the Karaf {{lib/ext}} 
folder and prefixed with {{karaf-}} before starting Karaf.
+Make sure you have the PostgreSQL driver jar file in the Karaf {{lib/ext}} 
folder.
 
 Then make you update the properties in {{$KARAF_HOME/etc/system.properties}} 
to look something like this example:
 



git commit: [KARAF-1545] Fix failover documentation about the installation of the JDBC driver

2014-07-10 Thread jbonofre
Repository: karaf
Updated Branches:
  refs/heads/karaf-2.3.x 36d9ef5e0 - 0d59d0615


[KARAF-1545] Fix failover documentation about the installation of the JDBC 
driver


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

Branch: refs/heads/karaf-2.3.x
Commit: 0d59d06154bd2a693d8b67ec066b76c013fd464f
Parents: 36d9ef5
Author: Jean-Baptiste Onofré jbono...@apache.org
Authored: Thu Jul 10 11:39:01 2014 +0200
Committer: Jean-Baptiste Onofré jbono...@apache.org
Committed: Thu Jul 10 11:46:13 2014 +0200

--
 manual/src/main/webapp/users-guide/failover.conf | 11 +--
 1 file changed, 5 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/0d59d061/manual/src/main/webapp/users-guide/failover.conf
--
diff --git a/manual/src/main/webapp/users-guide/failover.conf 
b/manual/src/main/webapp/users-guide/failover.conf
index 539a317..63a2aa5 100644
--- a/manual/src/main/webapp/users-guide/failover.conf
+++ b/manual/src/main/webapp/users-guide/failover.conf
@@ -50,8 +50,7 @@ karaf.lock.jdbc.timeout=30
 * If the connection to the database is lost, the master instance tries to 
gracefully shutdown, allowing a slave instance to become master when the 
database service is restored. The former master will require a manual restart.
 
 {warning}
-Apache Karaf won't start if the JDBC driver is not present in the {{lib/ext}} 
folder. In order to be loaded correctly,
-the JDBC driver jar file has to be prefixed with {{karaf-}} (for instance the 
{{ojdbc14.jar}} has to be renamed as {{karaf-ojdbc14.jar}} in the {{lib/ext}} 
folder.
+Apache Karaf won't start if the JDBC driver is not present in the {{lib/ext}} 
folder.
 {warning}
 
 h3. JDBC locking on Oracle
@@ -72,13 +71,13 @@ karaf.lock.jdbc.clustername=karaf
 karaf.lock.jdbc.timeout=30
 {noformat}
 
-As with the default JDBC locking setup, the Oracle JDBC driver JAR file must 
be in your classpath. You can ensure this by copying the {{ojdbc14.jar}} into 
Karaf's {{lib/ext}} folder and prefixed with {{karaf-}} before starting Karaf.
+Make sure you have the Oracle JDBC driver in the {{lib/ext}} folder.
 
 *Note*: The {{karaf.lock.jdbc.url}} requires an active SID, which means you 
must manually create a database instance before using this particular lock.
 
 h3. Derby
 
-The same rules apply when using derby.  Make sure you have the driver jar file 
in the Karaf {{lib/ext}} folder and prefixed with {{karaf-}} before starting 
Karaf.
+Make sure you have the driver jar file in the Karaf {{lib/ext}} folder.
 
 Then make you update the properties in {{$KARAF_HOME/etc/system.properties}} 
to look something like this example:
 
@@ -96,7 +95,7 @@ karaf.lock.jdbc.timeout=30
 
 h3. MySQL
 
-Make sure you have the MySQL driver jar file in the Karaf {{lib/ext}} folder 
and prefixed with {{karaf-}} before starting Karaf.
+Make sure you have the MySQL driver jar file in the Karaf {{lib/ext}} folder.
 
 Then make you update the properties in {{$KARAF_HOME/etc/system.properties}} 
to look something like this example:
 
@@ -114,7 +113,7 @@ karaf.lock.jdbc.timeout=30
 
 h3. PostgreSQL
 
-Make sure you have the PostgreSQL driver jar file in the Karaf {{lib/ext}} 
folder and prefixed with {{karaf-}} before starting Karaf.
+Make sure you have the PostgreSQL driver jar file in the Karaf {{lib/ext}} 
folder.
 
 Then make you update the properties in {{$KARAF_HOME/etc/system.properties}} 
to look something like this example:
 



Jenkins build is unstable: karaf-3.0.x » Apache Karaf :: Integration Tests #153

2014-07-10 Thread Apache Jenkins Server
See 
https://builds.apache.org/job/karaf-3.0.x/org.apache.karaf.itests$itests/153/



Jenkins build is unstable: karaf-3.0.x #153

2014-07-10 Thread Apache Jenkins Server
See https://builds.apache.org/job/karaf-3.0.x/153/changes



Build failed in Jenkins: karaf-2.x » Apache Karaf :: Integration Tests #168

2014-07-10 Thread Apache Jenkins Server
See 
https://builds.apache.org/job/karaf-2.x/org.apache.karaf.itests$itests/168/

--
[INFO] 
[INFO] 
[INFO] Building Apache Karaf :: Integration Tests 2.4.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ itests ---
[INFO] Deleting 
https://builds.apache.org/job/karaf-2.x/org.apache.karaf.itests$itests/ws/target


Build failed in Jenkins: karaf-2.x #168

2014-07-10 Thread Apache Jenkins Server
See https://builds.apache.org/job/karaf-2.x/168/changes

Changes:

[jbonofre] [KARAF-1545] Fix failover documentation about the installation of 
the JDBC driver

--
[...truncated 13877 lines...]
[JENKINS] Archiving https://builds.apache.org/job/karaf-2.x/ws/shell/pom.xml 
to org.apache.karaf.shell/shell/2.4.0-SNAPSHOT/shell-2.4.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Shell #167
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 1999 bytes
Compression is 0.0%
Took 0.1 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/archetypes/bundle/pom.xml to 
org.apache.karaf.archetypes/karaf-bundle-archetype/2.4.0-SNAPSHOT/karaf-bundle-archetype-2.4.0-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/archetypes/bundle/target/karaf-bundle-archetype-2.4.0-SNAPSHOT.jar
 to 
org.apache.karaf.archetypes/karaf-bundle-archetype/2.4.0-20140710.104345-137/karaf-bundle-archetype-2.4.0-20140710.104345-137.jar
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Archetypes :: 
Bundle Archetype #167
Archived 2 artifacts
Archive block size is 32768
Received 0 blocks and 11318 bytes
Compression is 0.0%
Took 0.14 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/admin/core/pom.xml to 
org.apache.karaf.admin/org.apache.karaf.admin.core/2.4.0-SNAPSHOT/org.apache.karaf.admin.core-2.4.0-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/admin/core/target/org.apache.karaf.admin.core-2.4.0-SNAPSHOT.jar
 to 
org.apache.karaf.admin/org.apache.karaf.admin.core/2.4.0-20140710.102507-149/org.apache.karaf.admin.core-2.4.0-20140710.102507-149.jar
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Admin :: Core 
#167
Archived 2 artifacts
Archive block size is 32768
Received 0 blocks and 141931 bytes
Compression is 0.0%
Took 2 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/shell/config/pom.xml to 
org.apache.karaf.shell/org.apache.karaf.shell.config/2.4.0-SNAPSHOT/org.apache.karaf.shell.config-2.4.0-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/shell/config/target/org.apache.karaf.shell.config-2.4.0-SNAPSHOT.jar
 to 
org.apache.karaf.shell/org.apache.karaf.shell.config/2.4.0-20140710.102708-146/org.apache.karaf.shell.config-2.4.0-20140710.102708-146.jar
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Shell :: 
ConfigAdmin Commands #167
Archived 2 artifacts
Archive block size is 32768
Received 0 blocks and 101273 bytes
Compression is 0.0%
Took 0.21 sec
[JENKINS] Archiving https://builds.apache.org/job/karaf-2.x/ws/pom.xml to 
org.apache.karaf/karaf/2.4.0-SNAPSHOT/karaf-2.4.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-2.x ? Apache Karaf #167
Archived 1 artifacts
Archive block size is 32768
Received 2 blocks and 19188 bytes
Compression is 77.4%
Took 0.11 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/shell/packages/pom.xml to 
org.apache.karaf.shell/org.apache.karaf.shell.packages/2.4.0-SNAPSHOT/org.apache.karaf.shell.packages-2.4.0-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/shell/packages/target/org.apache.karaf.shell.packages-2.4.0-SNAPSHOT.jar
 to 
org.apache.karaf.shell/org.apache.karaf.shell.packages/2.4.0-20140710.102753-144/org.apache.karaf.shell.packages-2.4.0-20140710.102753-144.jar
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Shell :: 
PackageAdmin Commands #167
Archived 2 artifacts
Archive block size is 32768
Received 0 blocks and 22210 bytes
Compression is 0.0%
Took 0.14 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/demos/deployer/wrap/dependency-reduced-pom.xml
 to 
org.apache.karaf.demos.deployer.wrap/osgi.commons-lang/2.4.0-SNAPSHOT/osgi.commons-lang-2.4.0-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/demos/deployer/wrap/target/osgi.commons-lang-2.4.0-SNAPSHOT.jar
 to 
org.apache.karaf.demos.deployer.wrap/osgi.commons-lang/2.4.0-20140710.104204-139/osgi.commons-lang-2.4.0-20140710.104204-139.jar
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Demos :: 
Deployer :: Wrap Bundle osgi.commons-lang #167
Archived 2 artifacts
Archive block size is 32768
Received 0 blocks and 274395 bytes
Compression is 0.0%
Took 0.52 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/archetypes/assembly/pom.xml to 
org.apache.karaf.archetypes/karaf-assembly-archetype/2.4.0-SNAPSHOT/karaf-assembly-archetype-2.4.0-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/archetypes/assembly/target/karaf-assembly-archetype-2.4.0-SNAPSHOT.jar
 to 
org.apache.karaf.archetypes/karaf-assembly-archetype/2.4.0-20140710.104306-137/karaf-assembly-archetype-2.4.0-20140710.104306-137.jar
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Archetypes :: 
Assembly Archetype #167
Archived 2 artifacts
Archive 

[1/3] git commit: [KARAF-1560] config:update throws ClassCastException when used on a Configuration with boolean fields created in the web console Use generics for configuration Dictionary

2014-07-10 Thread gnodet
Repository: karaf
Updated Branches:
  refs/heads/karaf-2.x 892528f48 - 22614b2a3


[KARAF-1560] config:update throws ClassCastException when used on a 
Configuration with boolean fields created in the web console
Use generics for configuration Dictionary


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

Branch: refs/heads/karaf-2.x
Commit: 22614b2a3e295119739b291321e818e16f8055df
Parents: 728cbec
Author: Guillaume Nodet gno...@gmail.com
Authored: Thu Jul 10 15:07:14 2014 +0200
Committer: Guillaume Nodet gno...@gmail.com
Committed: Thu Jul 10 15:07:27 2014 +0200

--
 .../shell/config/ConfigCommandSupport.java  | 22 +++-
 .../config/ConfigPropertyCommandSupport.java| 10 +
 .../apache/karaf/shell/config/EditCommand.java  |  5 +++--
 .../karaf/shell/config/PropAppendCommand.java   |  2 +-
 .../karaf/shell/config/PropDelCommand.java  |  2 +-
 .../karaf/shell/config/PropListCommand.java |  6 +++---
 .../karaf/shell/config/PropSetCommand.java  |  2 +-
 .../karaf/shell/config/UpdateCommand.java   |  2 +-
 8 files changed, 28 insertions(+), 23 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/22614b2a/shell/config/src/main/java/org/apache/karaf/shell/config/ConfigCommandSupport.java
--
diff --git 
a/shell/config/src/main/java/org/apache/karaf/shell/config/ConfigCommandSupport.java
 
b/shell/config/src/main/java/org/apache/karaf/shell/config/ConfigCommandSupport.java
index c972033..111bcf7 100644
--- 
a/shell/config/src/main/java/org/apache/karaf/shell/config/ConfigCommandSupport.java
+++ 
b/shell/config/src/main/java/org/apache/karaf/shell/config/ConfigCommandSupport.java
@@ -69,8 +69,8 @@ public abstract class ConfigCommandSupport extends 
OsgiCommandSupport {
 return null;
 }
 
-protected Dictionary getEditedProps() throws Exception {
-return (Dictionary) this.session.get(PROPERTY_CONFIG_PROPS);
+protected DictionaryString, Object getEditedProps() throws Exception {
+return (DictionaryString, Object) 
this.session.get(PROPERTY_CONFIG_PROPS);
 }
 
 protected ConfigurationAdmin getConfigurationAdmin() {
@@ -134,7 +134,7 @@ public abstract class ConfigCommandSupport extends 
OsgiCommandSupport {
  * @param bypassStorage
  * @throws IOException
  */
-protected void update(ConfigurationAdmin admin, String pid, Dictionary 
props, boolean bypassStorage) throws IOException {
+protected void update(ConfigurationAdmin admin, String pid, 
DictionaryString, Object props, boolean bypassStorage) throws IOException {
 if (!bypassStorage  storage != null) {
 persistConfiguration(admin, pid, props);
 } else {
@@ -150,7 +150,7 @@ public abstract class ConfigCommandSupport extends 
OsgiCommandSupport {
  * @param props
  * @throws IOException
  */
-protected void persistConfiguration(ConfigurationAdmin admin, String pid, 
Dictionary props) throws IOException {
+protected void persistConfiguration(ConfigurationAdmin admin, String pid, 
DictionaryString, Object props) throws IOException {
 File storageFile = new File(storage, pid + .cfg);
 Configuration cfg = admin.getConfiguration(pid, null);
 if (cfg != null  cfg.getProperties() != null) {
@@ -170,22 +170,24 @@ public abstract class ConfigCommandSupport extends 
OsgiCommandSupport {
 }
 }
 Properties p = new Properties(storageFile);
-for (Enumeration keys = props.keys(); keys.hasMoreElements(); ) {
-Object key = keys.nextElement();
+for (EnumerationString keys = props.keys(); keys.hasMoreElements(); 
) {
+String key = keys.nextElement();
 if (!Constants.SERVICE_PID.equals(key)
  !ConfigurationAdmin.SERVICE_FACTORYPID.equals(key)
  !FILEINSTALL_FILE_NAME.equals(key)) {
-p.put((String) key, (String) props.get(key));
+if (props.get(key) != null) {
+p.put(key, props.get(key).toString());
+}
 }
 }
 // remove removed properties from the file
 ArrayListString propertiesToRemove = new ArrayListString();
-for (Object key : p.keySet()) {
+for (String key : p.keySet()) {
 if (props.get(key) == null
  !Constants.SERVICE_PID.equals(key)
  !ConfigurationAdmin.SERVICE_FACTORYPID.equals(key)
  !FILEINSTALL_FILE_NAME.equals(key)) {
-

[2/3] git commit: Add missing karaf.admin.role system property

2014-07-10 Thread gnodet
Add missing karaf.admin.role system property


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

Branch: refs/heads/karaf-2.x
Commit: 728cbec8d03fb43fbbfbcb12d80951bd52f80416
Parents: 28376d9
Author: Guillaume Nodet gno...@gmail.com
Authored: Thu Jul 10 14:17:16 2014 +0200
Committer: Guillaume Nodet gno...@gmail.com
Committed: Thu Jul 10 15:07:27 2014 +0200

--
 .../main/distribution/text/etc/system.properties| 16 +++-
 1 file changed, 15 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/728cbec8/assemblies/apache-karaf/src/main/distribution/text/etc/system.properties
--
diff --git 
a/assemblies/apache-karaf/src/main/distribution/text/etc/system.properties 
b/assemblies/apache-karaf/src/main/distribution/text/etc/system.properties
index 99ce56d..1b3dace 100644
--- a/assemblies/apache-karaf/src/main/distribution/text/etc/system.properties
+++ b/assemblies/apache-karaf/src/main/distribution/text/etc/system.properties
@@ -56,6 +56,20 @@ karaf.shell.init.script = ${karaf.etc}/shell.init.script
 # karaf.shell.history.maxSize = 0
 
 #
+# Default role name used for console authorization (JMX, SSH and WEB)
+# The syntax is the following:
+#   [classname:]principal
+# where classname is the class name of the principal object
+# (defaults to org.apache.karaf.jaas.modules.RolePrincipal)
+# and principal is the name of the principal of that class
+# (defaults to admin).
+#
+# Note that this value can be overriden using the various ConfigAdmin
+# configurations for JMX, SSH or the WebConsole.
+#
+karaf.admin.role = admin
+
+#
 # Roles to use when logging into a local Karaf console.
 # The syntax is the following:
 #   [classname:]principal
@@ -64,7 +78,7 @@ karaf.shell.init.script = ${karaf.etc}/shell.init.script
 # and principal is the name of the principal of that class
 # (defaults to admin).
 #
-karaf.local.roles=admin,manager,viewer
+karaf.local.roles = admin,manager,viewer
 
 #
 # Set this empty property to avoid errors when validating xml documents.



[3/3] git commit: [KARAF-3108] Fix webconsole CSS

2014-07-10 Thread gnodet
[KARAF-3108] Fix webconsole CSS


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

Branch: refs/heads/karaf-2.x
Commit: 28376d97f6834d9fdac9e2b2bc1980bda46d9cda
Parents: 892528f
Author: Guillaume Nodet gno...@gmail.com
Authored: Thu Jul 10 11:48:02 2014 +0200
Committer: Guillaume Nodet gno...@gmail.com
Committed: Thu Jul 10 15:07:27 2014 +0200

--
 .../main/resources/res/karaf/ui/webconsole.css  | 30 
 1 file changed, 24 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/28376d97/webconsole/branding/src/main/resources/res/karaf/ui/webconsole.css
--
diff --git a/webconsole/branding/src/main/resources/res/karaf/ui/webconsole.css 
b/webconsole/branding/src/main/resources/res/karaf/ui/webconsole.css
index a31e6bc..03fa9dd 100644
--- a/webconsole/branding/src/main/resources/res/karaf/ui/webconsole.css
+++ b/webconsole/branding/src/main/resources/res/karaf/ui/webconsole.css
@@ -66,6 +66,24 @@
white-space: nowrap;
 }
 
+/* New Category Based Navigation Tree (FELIX-3769) */
+#navmenu {
+ width: auto;
+}
+
+#navmenu li.ui-menu-item {
+ width: auto;
+}
+
+#navmenu li.navMenuItem-0 {
+display: inline-block;
+}
+
+/* Don't display caret on top-level menu (FELIX-3841) */
+#navmenu li.navMenuItem-0  a  span {
+display: none;
+}
+
 /* CENTRAL CONTENT AREA STYLING */
 #content, .ui-widget, .ui-widget input, .ui-widget select, .ui-widget 
textarea, .ui-widget button { font-size: 8pt }
 
@@ -119,16 +137,16 @@ table.nicetable th, table.nicetable td {
 
 /* tablesorter styling */
 tr .header {
-   background-image: url(../lib/bg.gif);
-   background-repeat: no-repeat;
-   background-position: center right;
-   cursor: pointer;
+   background-image: url(../lib/bg.gif) !important;
+   background-repeat: no-repeat !important;
+   background-position: center right !important;
+   cursor: pointer !important;
 }
 tr .headerSortUp {
-   background-image: url(../lib/asc.gif);
+   background-image: url(../lib/asc.gif) !important;
 }
 tr .headerSortDown {
-   background-image: url(../lib/desc.gif);
+   background-image: url(../lib/desc.gif) !important;
 }
 
 /* status line */



git commit: [KARAF-3109] Upgrade to Pax Exam 4.0.0

2014-07-10 Thread jbonofre
Repository: karaf
Updated Branches:
  refs/heads/master 2cc74ed90 - 071047f46


[KARAF-3109] Upgrade to Pax Exam 4.0.0


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

Branch: refs/heads/master
Commit: 071047f46ebd4a72bba2aa824f20a1454125a980
Parents: 2cc74ed
Author: Jean-Baptiste Onofré jbono...@apache.org
Authored: Thu Jul 10 15:08:37 2014 +0200
Committer: Jean-Baptiste Onofré jbono...@apache.org
Committed: Thu Jul 10 15:08:37 2014 +0200

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


http://git-wip-us.apache.org/repos/asf/karaf/blob/071047f4/pom.xml
--
diff --git a/pom.xml b/pom.xml
index d176507..0bcad2e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -231,7 +231,7 @@
 osgi.compendium.version5.0.0/osgi.compendium.version
 org.json.version20131018/org.json.version
 pax.cdi.version0.7.0/pax.cdi.version
-pax.exam.version3.4.0/pax.exam.version
+pax.exam.version4.0.0/pax.exam.version
 pax.logging.version1.7.3-SNAPSHOT/pax.logging.version
 pax.base.version1.4.0/pax.base.version
 pax.url.version2.1.0/pax.url.version



git commit: [KARAF-3109] Upgrade to Pax Exam 4.0.0

2014-07-10 Thread jbonofre
Repository: karaf
Updated Branches:
  refs/heads/karaf-3.0.x 08dca7aa7 - 607919a9e


[KARAF-3109] Upgrade to Pax Exam 4.0.0


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

Branch: refs/heads/karaf-3.0.x
Commit: 607919a9e852c5e2e574d052755e1d9fd7183c5d
Parents: 08dca7a
Author: Jean-Baptiste Onofré jbono...@apache.org
Authored: Thu Jul 10 15:18:02 2014 +0200
Committer: Jean-Baptiste Onofré jbono...@apache.org
Committed: Thu Jul 10 15:18:02 2014 +0200

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


http://git-wip-us.apache.org/repos/asf/karaf/blob/607919a9/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 9dfdc4b..bedd932 100644
--- a/pom.xml
+++ b/pom.xml
@@ -224,7 +224,7 @@
 osgi.compendium.version5.0.0/osgi.compendium.version
 org.json.version20131018/org.json.version
 pax.cdi.version0.7.0/pax.cdi.version
-pax.exam.version3.4.0/pax.exam.version
+pax.exam.version4.0.0/pax.exam.version
 pax.logging.version1.7.3-SNAPSHOT/pax.logging.version
 pax.base.version1.4.0/pax.base.version
 pax.url.version1.6.0/pax.url.version



Build failed in Jenkins: karaf-2.x #169

2014-07-10 Thread Apache Jenkins Server
See https://builds.apache.org/job/karaf-2.x/169/changes

Changes:

[gnodet] [KARAF-3108] Fix webconsole CSS

[gnodet] Add missing karaf.admin.role system property

[gnodet] [KARAF-1560] config:update throws ClassCastException when used on a 
Configuration with boolean fields created in the web console

--
[...truncated 6257 lines...]
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 2530 bytes
Compression is 0.0%
Took 0.2 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/shell/scr/pom.xml to 
org.apache.karaf.shell/org.apache.karaf.shell.scr/2.4.0-SNAPSHOT/org.apache.karaf.shell.scr-2.4.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Shell :: SCR 
Commands #168
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 3738 bytes
Compression is 0.0%
Took 2 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/demos/deployer/feature/pom.xml to 
org.apache.karaf.demos.deployer.feature/my-feature/2.4.0-SNAPSHOT/my-feature-2.4.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Demos :: 
Deployer :: Feature #168
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 2922 bytes
Compression is 0.0%
Took 0.27 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/exception/pom.xml to 
org.apache.karaf/org.apache.karaf.exception/2.4.0-SNAPSHOT/org.apache.karaf.exception-2.4.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Exception #168
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 1721 bytes
Compression is 0.0%
Took 1.4 sec
[JENKINS] Archiving https://builds.apache.org/job/karaf-2.x/ws/shell/pom.xml 
to org.apache.karaf.shell/shell/2.4.0-SNAPSHOT/shell-2.4.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Shell #168
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 1999 bytes
Compression is 0.0%
Took 0.3 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/archetypes/bundle/pom.xml to 
org.apache.karaf.archetypes/karaf-bundle-archetype/2.4.0-SNAPSHOT/karaf-bundle-archetype-2.4.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Archetypes :: 
Bundle Archetype #168
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 3423 bytes
Compression is 0.0%
Took 0.41 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/admin/core/pom.xml to 
org.apache.karaf.admin/org.apache.karaf.admin.core/2.4.0-SNAPSHOT/org.apache.karaf.admin.core-2.4.0-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/admin/core/target/org.apache.karaf.admin.core-2.4.0-SNAPSHOT.jar
 to 
org.apache.karaf.admin/org.apache.karaf.admin.core/2.4.0-20140710.131804-150/org.apache.karaf.admin.core-2.4.0-20140710.131804-150.jar
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Admin :: Core 
#168
Archived 2 artifacts
Archive block size is 32768
Received 0 blocks and 141930 bytes
Compression is 0.0%
Took 2.8 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/shell/config/pom.xml to 
org.apache.karaf.shell/org.apache.karaf.shell.config/2.4.0-SNAPSHOT/org.apache.karaf.shell.config-2.4.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Shell :: 
ConfigAdmin Commands #168
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 4502 bytes
Compression is 0.0%
Took 0.31 sec
[JENKINS] Archiving https://builds.apache.org/job/karaf-2.x/ws/pom.xml to 
org.apache.karaf/karaf/2.4.0-SNAPSHOT/karaf-2.4.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-2.x ? Apache Karaf #168
Archived 1 artifacts
Archive block size is 32768
Received 2 blocks and 19188 bytes
Compression is 77.4%
Took 0.23 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/shell/packages/pom.xml to 
org.apache.karaf.shell/org.apache.karaf.shell.packages/2.4.0-SNAPSHOT/org.apache.karaf.shell.packages-2.4.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Shell :: 
PackageAdmin Commands #168
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 3853 bytes
Compression is 0.0%
Took 0.21 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/demos/deployer/wrap/pom.xml to 
org.apache.karaf.demos.deployer.wrap/osgi.commons-lang/2.4.0-SNAPSHOT/osgi.commons-lang-2.4.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Demos :: 
Deployer :: Wrap Bundle osgi.commons-lang #168
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 4420 bytes
Compression is 0.0%
Took 1.8 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/archetypes/assembly/pom.xml to 
org.apache.karaf.archetypes/karaf-assembly-archetype/2.4.0-SNAPSHOT/karaf-assembly-archetype-2.4.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: 

[2/2] git commit: [KARAF-1560] config:update throws ClassCastException when used on a Configuration with boolean fields created in the web console Use generics for configuration Dictionary

2014-07-10 Thread gnodet
[KARAF-1560] config:update throws ClassCastException when used on a 
Configuration with boolean fields created in the web console
Use generics for configuration Dictionary


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

Branch: refs/heads/karaf-2.3.x
Commit: b846b03e34fc7a3a380fc62ebff0048e3c6b9556
Parents: 932f712
Author: Guillaume Nodet gno...@gmail.com
Authored: Thu Jul 10 15:07:14 2014 +0200
Committer: Guillaume Nodet gno...@gmail.com
Committed: Thu Jul 10 15:28:07 2014 +0200

--
 .../shell/config/ConfigCommandSupport.java  | 22 +++-
 .../config/ConfigPropertyCommandSupport.java| 10 +
 .../apache/karaf/shell/config/EditCommand.java  |  5 +++--
 .../karaf/shell/config/PropAppendCommand.java   |  2 +-
 .../karaf/shell/config/PropDelCommand.java  |  2 +-
 .../karaf/shell/config/PropListCommand.java |  6 +++---
 .../karaf/shell/config/PropSetCommand.java  |  2 +-
 .../karaf/shell/config/UpdateCommand.java   |  2 +-
 8 files changed, 28 insertions(+), 23 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/b846b03e/shell/config/src/main/java/org/apache/karaf/shell/config/ConfigCommandSupport.java
--
diff --git 
a/shell/config/src/main/java/org/apache/karaf/shell/config/ConfigCommandSupport.java
 
b/shell/config/src/main/java/org/apache/karaf/shell/config/ConfigCommandSupport.java
index c972033..111bcf7 100644
--- 
a/shell/config/src/main/java/org/apache/karaf/shell/config/ConfigCommandSupport.java
+++ 
b/shell/config/src/main/java/org/apache/karaf/shell/config/ConfigCommandSupport.java
@@ -69,8 +69,8 @@ public abstract class ConfigCommandSupport extends 
OsgiCommandSupport {
 return null;
 }
 
-protected Dictionary getEditedProps() throws Exception {
-return (Dictionary) this.session.get(PROPERTY_CONFIG_PROPS);
+protected DictionaryString, Object getEditedProps() throws Exception {
+return (DictionaryString, Object) 
this.session.get(PROPERTY_CONFIG_PROPS);
 }
 
 protected ConfigurationAdmin getConfigurationAdmin() {
@@ -134,7 +134,7 @@ public abstract class ConfigCommandSupport extends 
OsgiCommandSupport {
  * @param bypassStorage
  * @throws IOException
  */
-protected void update(ConfigurationAdmin admin, String pid, Dictionary 
props, boolean bypassStorage) throws IOException {
+protected void update(ConfigurationAdmin admin, String pid, 
DictionaryString, Object props, boolean bypassStorage) throws IOException {
 if (!bypassStorage  storage != null) {
 persistConfiguration(admin, pid, props);
 } else {
@@ -150,7 +150,7 @@ public abstract class ConfigCommandSupport extends 
OsgiCommandSupport {
  * @param props
  * @throws IOException
  */
-protected void persistConfiguration(ConfigurationAdmin admin, String pid, 
Dictionary props) throws IOException {
+protected void persistConfiguration(ConfigurationAdmin admin, String pid, 
DictionaryString, Object props) throws IOException {
 File storageFile = new File(storage, pid + .cfg);
 Configuration cfg = admin.getConfiguration(pid, null);
 if (cfg != null  cfg.getProperties() != null) {
@@ -170,22 +170,24 @@ public abstract class ConfigCommandSupport extends 
OsgiCommandSupport {
 }
 }
 Properties p = new Properties(storageFile);
-for (Enumeration keys = props.keys(); keys.hasMoreElements(); ) {
-Object key = keys.nextElement();
+for (EnumerationString keys = props.keys(); keys.hasMoreElements(); 
) {
+String key = keys.nextElement();
 if (!Constants.SERVICE_PID.equals(key)
  !ConfigurationAdmin.SERVICE_FACTORYPID.equals(key)
  !FILEINSTALL_FILE_NAME.equals(key)) {
-p.put((String) key, (String) props.get(key));
+if (props.get(key) != null) {
+p.put(key, props.get(key).toString());
+}
 }
 }
 // remove removed properties from the file
 ArrayListString propertiesToRemove = new ArrayListString();
-for (Object key : p.keySet()) {
+for (String key : p.keySet()) {
 if (props.get(key) == null
  !Constants.SERVICE_PID.equals(key)
  !ConfigurationAdmin.SERVICE_FACTORYPID.equals(key)
  !FILEINSTALL_FILE_NAME.equals(key)) {
-propertiesToRemove.add(key.toString());
+propertiesToRemove.add(key);
 }
 }

[1/2] git commit: [KARAF-3108] Fix webconsole CSS

2014-07-10 Thread gnodet
Repository: karaf
Updated Branches:
  refs/heads/karaf-2.3.x 0d59d0615 - b846b03e3


[KARAF-3108] Fix webconsole CSS


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

Branch: refs/heads/karaf-2.3.x
Commit: 932f712aacb6d87679d2c18b9b735966b345217c
Parents: 0d59d06
Author: Guillaume Nodet gno...@gmail.com
Authored: Thu Jul 10 11:48:02 2014 +0200
Committer: Guillaume Nodet gno...@gmail.com
Committed: Thu Jul 10 15:27:26 2014 +0200

--
 .../main/resources/res/karaf/ui/webconsole.css  | 30 
 1 file changed, 24 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/932f712a/webconsole/branding/src/main/resources/res/karaf/ui/webconsole.css
--
diff --git a/webconsole/branding/src/main/resources/res/karaf/ui/webconsole.css 
b/webconsole/branding/src/main/resources/res/karaf/ui/webconsole.css
index a31e6bc..03fa9dd 100644
--- a/webconsole/branding/src/main/resources/res/karaf/ui/webconsole.css
+++ b/webconsole/branding/src/main/resources/res/karaf/ui/webconsole.css
@@ -66,6 +66,24 @@
white-space: nowrap;
 }
 
+/* New Category Based Navigation Tree (FELIX-3769) */
+#navmenu {
+ width: auto;
+}
+
+#navmenu li.ui-menu-item {
+ width: auto;
+}
+
+#navmenu li.navMenuItem-0 {
+display: inline-block;
+}
+
+/* Don't display caret on top-level menu (FELIX-3841) */
+#navmenu li.navMenuItem-0  a  span {
+display: none;
+}
+
 /* CENTRAL CONTENT AREA STYLING */
 #content, .ui-widget, .ui-widget input, .ui-widget select, .ui-widget 
textarea, .ui-widget button { font-size: 8pt }
 
@@ -119,16 +137,16 @@ table.nicetable th, table.nicetable td {
 
 /* tablesorter styling */
 tr .header {
-   background-image: url(../lib/bg.gif);
-   background-repeat: no-repeat;
-   background-position: center right;
-   cursor: pointer;
+   background-image: url(../lib/bg.gif) !important;
+   background-repeat: no-repeat !important;
+   background-position: center right !important;
+   cursor: pointer !important;
 }
 tr .headerSortUp {
-   background-image: url(../lib/asc.gif);
+   background-image: url(../lib/asc.gif) !important;
 }
 tr .headerSortDown {
-   background-image: url(../lib/desc.gif);
+   background-image: url(../lib/desc.gif) !important;
 }
 
 /* status line */



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

2014-07-10 Thread Apache Jenkins Server
See 
https://builds.apache.org/job/karaf-master/org.apache.karaf$karaf/2632/changes

Changes:

[jbonofre] [KARAF-3109] Upgrade to Pax Exam 4.0.0

--
[...truncated 1181 lines...]
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/12/commons-parent-12.pom
 (27 KB at 2389.8 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-exec/1.1/maven-reporting-exec-1.1.jar
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/0.3/maven-shared-utils-0.3.jar
Downloading: 
http://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.jar
Downloading: 
http://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar
 (11 KB at 971.2 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar
Downloaded: 
http://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.jar
 (32 KB at 2829.0 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar
Downloaded: 
http://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar
 (106 KB at 8109.1 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.jar
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-exec/1.1/maven-reporting-exec-1.1.jar
 (26 KB at 1807.8 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.4.2/maven-archiver-2.4.2.jar
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/0.3/maven-shared-utils-0.3.jar
 (152 KB at 9479.7 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.4/doxia-sink-api-1.4.jar
Downloaded: 
http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.jar
 (60 KB at 6626.7 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.4/doxia-logging-api-1.4.jar
Downloaded: 
http://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar
 (150 KB at 12450.3 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.4/doxia-core-1.4.jar
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.4/doxia-sink-api-1.4.jar
 (11 KB at 1563.1 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.jar
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.4.2/maven-archiver-2.4.2.jar
 (20 KB at 1795.3 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.jar
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.4/doxia-logging-api-1.4.jar
 (12 KB at 1578.0 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.jar
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.4/doxia-core-1.4.jar
 (162 KB at 12386.9 KB/sec)
Downloaded: 
http://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar
 (461 KB at 18427.2 KB/sec)
Downloaded: 
http://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.jar
 (190 KB at 15816.6 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.3/commons-codec-1.3.jar
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.0.1/httpcore-4.0.1.jar
Downloading: 
http://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.0.2/httpclient-4.0.2.jar
 (287 KB at 15890.3 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.4/doxia-module-xhtml-1.4.jar
Downloaded: 
http://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar
 (60 KB at 4233.1 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-apt/1.4/doxia-module-apt-1.4.jar
Downloaded: 
http://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.3/commons-codec-1.3.jar
 (46 KB at 3510.0 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xdoc/1.4/doxia-module-xdoc-1.4.jar

Build failed in Jenkins: karaf-master #2632

2014-07-10 Thread Apache Jenkins Server
See https://builds.apache.org/job/karaf-master/2632/changes

Changes:

[jbonofre] [KARAF-3109] Upgrade to Pax Exam 4.0.0

--
[...truncated 2012 lines...]
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 9245 bytes
Compression is 0.0%
Took 2.1 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/webconsole/gogo/pom.xml to 
org.apache.karaf.webconsole/org.apache.karaf.webconsole.gogo/4.0.0-SNAPSHOT/org.apache.karaf.webconsole.gogo-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Web Console 
:: Gogo Plugin #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 5112 bytes
Compression is 0.0%
Took 0.17 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/bundle/springstate/pom.xml to 
org.apache.karaf.bundle/org.apache.karaf.bundle.springstate/4.0.0-SNAPSHOT/org.apache.karaf.bundle.springstate-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Bundle :: 
SpringStateService #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 4150 bytes
Compression is 0.0%
Took 0.17 sec
[JENKINS] Archiving https://builds.apache.org/job/karaf-master/ws/log/pom.xml 
to 
org.apache.karaf.log/org.apache.karaf.log.core/4.0.0-SNAPSHOT/org.apache.karaf.log.core-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Log :: Core 
#2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 5306 bytes
Compression is 0.0%
Took 0.15 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/demos/deployer/kar/pom.xml to 
org.apache.karaf.demos/my-kar/4.0.0-SNAPSHOT/my-kar-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Demos :: 
Deployer :: Kar #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 2624 bytes
Compression is 0.0%
Took 0.15 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/shell/table/pom.xml to 
org.apache.karaf.shell/org.apache.karaf.shell.table/4.0.0-SNAPSHOT/org.apache.karaf.shell.table-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Shell :: 
Table #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 2714 bytes
Compression is 0.0%
Took 0.16 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/shell/commands/pom.xml to 
org.apache.karaf.shell/org.apache.karaf.shell.commands/4.0.0-SNAPSHOT/org.apache.karaf.shell.commands-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Shell :: 
Various Commands #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 4959 bytes
Compression is 0.0%
Took 0.21 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/tooling/karaf-maven-plugin/pom.xml
 to 
org.apache.karaf.tooling/karaf-maven-plugin/4.0.0-SNAPSHOT/karaf-maven-plugin-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Tooling :: 
Maven Karaf Plugin #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 9177 bytes
Compression is 0.0%
Took 0.13 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/demos/web/pom.xml to 
org.apache.karaf.demos/web/4.0.0-SNAPSHOT/web-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Demos :: Web 
#2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 7026 bytes
Compression is 0.0%
Took 0.36 sec
[JENKINS] Archiving https://builds.apache.org/job/karaf-master/ws/jms/pom.xml 
to 
org.apache.karaf.jms/org.apache.karaf.jms.core/4.0.0-SNAPSHOT/org.apache.karaf.jms.core-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: JMS :: Core 
#2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 4457 bytes
Compression is 0.0%
Took 0.16 sec
[JENKINS] Archiving https://builds.apache.org/job/karaf-master/ws/jpa/pom.xml 
to org.apache.karaf.jpa/jpa-parent/4.0.0-SNAPSHOT/jpa-parent-4.0.0-SNAPSHOT.pom
No prior successful build to compare, so performing full copy of artifacts
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/demos/dump/pom.xml to 
org.apache.karaf.demos/dump/4.0.0-SNAPSHOT/dump-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Demos :: Demo 
Dump provider #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 2530 bytes
Compression is 0.0%
Took 0.17 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/webconsole/instance/pom.xml to 
org.apache.karaf.webconsole/org.apache.karaf.webconsole.instance/4.0.0-SNAPSHOT/org.apache.karaf.webconsole.instance-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Web Console 
:: Instance Plugin #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 

git commit: [KARAF-1560] Fixing ConfigCommandSupport test with the latest changes

2014-07-10 Thread jbonofre
Repository: karaf
Updated Branches:
  refs/heads/karaf-2.x 22614b2a3 - 9c59314a4


[KARAF-1560] Fixing ConfigCommandSupport test with the latest changes


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

Branch: refs/heads/karaf-2.x
Commit: 9c59314a4c53dee23a69eb7923a2753d0ccaf52d
Parents: 22614b2
Author: Jean-Baptiste Onofré jbono...@apache.org
Authored: Thu Jul 10 15:31:35 2014 +0200
Committer: Jean-Baptiste Onofré jbono...@apache.org
Committed: Thu Jul 10 15:31:35 2014 +0200

--
 .../java/org/apache/karaf/shell/config/ConfigCommandSupport.java  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/9c59314a/shell/config/src/main/java/org/apache/karaf/shell/config/ConfigCommandSupport.java
--
diff --git 
a/shell/config/src/main/java/org/apache/karaf/shell/config/ConfigCommandSupport.java
 
b/shell/config/src/main/java/org/apache/karaf/shell/config/ConfigCommandSupport.java
index 111bcf7..b1cf429 100644
--- 
a/shell/config/src/main/java/org/apache/karaf/shell/config/ConfigCommandSupport.java
+++ 
b/shell/config/src/main/java/org/apache/karaf/shell/config/ConfigCommandSupport.java
@@ -182,7 +182,8 @@ public abstract class ConfigCommandSupport extends 
OsgiCommandSupport {
 }
 // remove removed properties from the file
 ArrayListString propertiesToRemove = new ArrayListString();
-for (String key : p.keySet()) {
+for (Object current : p.keySet()) {
+String key = (String) current;
 if (props.get(key) == null
  !Constants.SERVICE_PID.equals(key)
  !ConfigurationAdmin.SERVICE_FACTORYPID.equals(key)



git commit: [KARAF-3110] Upgrade to felix utils 1.6.0 and revert the previous fix for [KARAF-1560]

2014-07-10 Thread gnodet
Repository: karaf
Updated Branches:
  refs/heads/karaf-2.x 9c59314a4 - 13d06fe24


[KARAF-3110] Upgrade to felix utils 1.6.0
and revert the previous fix for [KARAF-1560]

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

Branch: refs/heads/karaf-2.x
Commit: 13d06fe24efcadddafdb734379e325ae6b833e1f
Parents: 9c59314
Author: Guillaume Nodet gno...@gmail.com
Authored: Thu Jul 10 15:56:26 2014 +0200
Committer: Guillaume Nodet gno...@gmail.com
Committed: Thu Jul 10 15:56:26 2014 +0200

--
 pom.xml  | 2 +-
 shell/config/pom.xml | 8 
 .../org/apache/karaf/shell/config/ConfigCommandSupport.java  | 3 +--
 3 files changed, 6 insertions(+), 7 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/13d06fe2/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 902f491..9f02cd4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -144,7 +144,7 @@
 
felix.framework.security.version2.4.0/felix.framework.security.version
 felix.gogo.version0.12.1/felix.gogo.version
 felix.plugin.version2.5.0/felix.plugin.version
-felix.utils.version1.4.2/felix.utils.version
+felix.utils.version1.6.0/felix.utils.version
 felix.webconsole.version4.2.0/felix.webconsole.version
 felix.webconsole.api.version3.1.2/felix.webconsole.api.version
 felix.metatype.version1.0.10/felix.metatype.version

http://git-wip-us.apache.org/repos/asf/karaf/blob/13d06fe2/shell/config/pom.xml
--
diff --git a/shell/config/pom.xml b/shell/config/pom.xml
index a03e44b..5f926bf 100644
--- a/shell/config/pom.xml
+++ b/shell/config/pom.xml
@@ -39,13 +39,13 @@
 
 dependencies
 dependency
-groupIdorg.apache.karaf.shell/groupId
-artifactIdorg.apache.karaf.shell.console/artifactId
+groupIdorg.apache.felix/groupId
+artifactIdorg.apache.felix.utils/artifactId
 /dependency
 
 dependency
-groupIdorg.apache.felix/groupId
-artifactIdorg.apache.felix.utils/artifactId
+groupIdorg.apache.karaf.shell/groupId
+artifactIdorg.apache.karaf.shell.console/artifactId
 /dependency
 
 dependency

http://git-wip-us.apache.org/repos/asf/karaf/blob/13d06fe2/shell/config/src/main/java/org/apache/karaf/shell/config/ConfigCommandSupport.java
--
diff --git 
a/shell/config/src/main/java/org/apache/karaf/shell/config/ConfigCommandSupport.java
 
b/shell/config/src/main/java/org/apache/karaf/shell/config/ConfigCommandSupport.java
index b1cf429..111bcf7 100644
--- 
a/shell/config/src/main/java/org/apache/karaf/shell/config/ConfigCommandSupport.java
+++ 
b/shell/config/src/main/java/org/apache/karaf/shell/config/ConfigCommandSupport.java
@@ -182,8 +182,7 @@ public abstract class ConfigCommandSupport extends 
OsgiCommandSupport {
 }
 // remove removed properties from the file
 ArrayListString propertiesToRemove = new ArrayListString();
-for (Object current : p.keySet()) {
-String key = (String) current;
+for (String key : p.keySet()) {
 if (props.get(key) == null
  !Constants.SERVICE_PID.equals(key)
  !ConfigurationAdmin.SERVICE_FACTORYPID.equals(key)



git commit: [KARAF-3110] Upgrade to felix utils 1.6.0 and fix compilation error in [KARAF-1560]

2014-07-10 Thread gnodet
Repository: karaf
Updated Branches:
  refs/heads/karaf-2.3.x b846b03e3 - bdf1ef7db


[KARAF-3110] Upgrade to felix utils 1.6.0
and fix compilation error in  [KARAF-1560]


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

Branch: refs/heads/karaf-2.3.x
Commit: bdf1ef7dbc690101b0d07ded19f3aff22369a6f9
Parents: b846b03
Author: Guillaume Nodet gno...@gmail.com
Authored: Thu Jul 10 15:56:26 2014 +0200
Committer: Guillaume Nodet gno...@gmail.com
Committed: Thu Jul 10 15:59:24 2014 +0200

--
 pom.xml  | 2 +-
 shell/config/pom.xml | 8 
 2 files changed, 5 insertions(+), 5 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/bdf1ef7d/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 0cb600e..7437845 100644
--- a/pom.xml
+++ b/pom.xml
@@ -146,7 +146,7 @@
 felix.framework.version4.0.3/felix.framework.version
 felix.gogo.version0.10.0/felix.gogo.version
 felix.plugin.version2.4.0/felix.plugin.version
-felix.utils.version1.4.2/felix.utils.version
+felix.utils.version1.6.0/felix.utils.version
 felix.webconsole.version4.2.0/felix.webconsole.version
 felix.webconsole.api.version3.1.2/felix.webconsole.api.version
 felix.metatype.version1.0.10/felix.metatype.version

http://git-wip-us.apache.org/repos/asf/karaf/blob/bdf1ef7d/shell/config/pom.xml
--
diff --git a/shell/config/pom.xml b/shell/config/pom.xml
index 8d13fe5..d68cb88 100644
--- a/shell/config/pom.xml
+++ b/shell/config/pom.xml
@@ -39,13 +39,13 @@
 
 dependencies
 dependency
-groupIdorg.apache.karaf.shell/groupId
-artifactIdorg.apache.karaf.shell.console/artifactId
+groupIdorg.apache.felix/groupId
+artifactIdorg.apache.felix.utils/artifactId
 /dependency
 
 dependency
-groupIdorg.apache.felix/groupId
-artifactIdorg.apache.felix.utils/artifactId
+groupIdorg.apache.karaf.shell/groupId
+artifactIdorg.apache.karaf.shell.console/artifactId
 /dependency
 
 dependency



git commit: [KARAF-3109] Upgrade to Pax Exam 4.0.0

2014-07-10 Thread jbonofre
Repository: karaf
Updated Branches:
  refs/heads/karaf-2.x 13d06fe24 - 19e2415e1


[KARAF-3109] Upgrade to Pax Exam 4.0.0


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

Branch: refs/heads/karaf-2.x
Commit: 19e2415e1630c4cd1e765b0b289ede8625bf74bb
Parents: 13d06fe
Author: Jean-Baptiste Onofré jbono...@apache.org
Authored: Thu Jul 10 16:21:36 2014 +0200
Committer: Jean-Baptiste Onofré jbono...@apache.org
Committed: Thu Jul 10 16:21:36 2014 +0200

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


http://git-wip-us.apache.org/repos/asf/karaf/blob/19e2415e/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 9f02cd4..26552d8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -200,7 +200,7 @@
 org.json.version20131018/org.json.version
 pax.base.version1.4.0/pax.base.version
 pax.cdi.version0.7.0/pax.cdi.version
-pax.exam.version3.5.0/pax.exam.version
+pax.exam.version4.0.0/pax.exam.version
 pax.logging.version1.7.2/pax.logging.version
 pax.url.version2.1.0/pax.url.version
 pax.swissbox.version1.7.1/pax.swissbox.version



Jenkins build is still unstable: karaf-3.0.x » Apache Karaf :: Integration Tests #154

2014-07-10 Thread Apache Jenkins Server
See 
https://builds.apache.org/job/karaf-3.0.x/org.apache.karaf.itests$itests/154/



Jenkins build is still unstable: karaf-3.0.x #154

2014-07-10 Thread Apache Jenkins Server
See https://builds.apache.org/job/karaf-3.0.x/changes



git commit: [KARAF-2830] Set the Java version check more flexible

2014-07-10 Thread jbonofre
Repository: karaf
Updated Branches:
  refs/heads/master 071047f46 - b6dd89383


[KARAF-2830] Set the Java version check more flexible


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

Branch: refs/heads/master
Commit: b6dd8938315f9d6e495e57608ce635fc324bb7a3
Parents: 071047f
Author: Jean-Baptiste Onofré jbono...@apache.org
Authored: Thu Jul 10 17:04:13 2014 +0200
Committer: Jean-Baptiste Onofré jbono...@apache.org
Committed: Thu Jul 10 17:04:13 2014 +0200

--
 .../framework/src/main/filtered-resources/resources/bin/karaf  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/b6dd8938/assemblies/features/framework/src/main/filtered-resources/resources/bin/karaf
--
diff --git 
a/assemblies/features/framework/src/main/filtered-resources/resources/bin/karaf 
b/assemblies/features/framework/src/main/filtered-resources/resources/bin/karaf
index 02a5f3b..00a0770 100755
--- 
a/assemblies/features/framework/src/main/filtered-resources/resources/bin/karaf
+++ 
b/assemblies/features/framework/src/main/filtered-resources/resources/bin/karaf
@@ -237,7 +237,7 @@ detectJVM() {
 
 checkJvmVersion() {
# echo `$JAVA -version`
-   VERSION=`$JAVA -version 21 | egrep '([0-9].[0-9]\..*[0-9])' | awk 
'{print substr($3,2,length($3)-2)}' | awk '{print substr($1, 3, 3)}' | sed -e 
's;\.;;g'`
+   VERSION=`$JAVA -version 21 | egrep '([0-9].[0-9]\..*[0-9]).*' | awk 
'{print substr($3,2,length($3)-2)}' | awk '{print substr($1, 3, 3)}' | sed -e 
's;\.;;g'`
# echo $VERSION
if [ $VERSION -lt 60 ]; then
echo JVM must be greater than 1.6



git commit: [KARAF-3111] Add the ability to specify text and binary resources (as overrides) in InstanceSettings, create and clone commands.

2014-07-10 Thread iocanel
Repository: karaf
Updated Branches:
  refs/heads/karaf-2.x 19e2415e1 - 4d0b29667


[KARAF-3111] Add the ability to specify text and binary resources (as 
overrides) in InstanceSettings, create and clone commands.


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

Branch: refs/heads/karaf-2.x
Commit: 4d0b29667bf3047a685a8deb44d4ea56a7a35c2b
Parents: 19e2415
Author: Ioannis Canellos ioca...@gmail.com
Authored: Thu Jul 10 17:50:18 2014 +0300
Committer: Ioannis Canellos ioca...@gmail.com
Committed: Thu Jul 10 17:50:48 2014 +0300

--
 .../admin/command/AdminCommandSupport.java  | 19 
 .../karaf/admin/command/CloneCommand.java   | 17 +++-
 .../karaf/admin/command/CreateCommand.java  | 22 -
 .../apache/karaf/admin/InstanceSettings.java| 29 ++-
 .../karaf/admin/internal/AdminServiceImpl.java  | 91 +++-
 .../admin/internal/AdminServiceImplTest.java| 15 
 admin/core/src/test/resources/myresource| 20 +
 7 files changed, 161 insertions(+), 52 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/4d0b2966/admin/command/src/main/java/org/apache/karaf/admin/command/AdminCommandSupport.java
--
diff --git 
a/admin/command/src/main/java/org/apache/karaf/admin/command/AdminCommandSupport.java
 
b/admin/command/src/main/java/org/apache/karaf/admin/command/AdminCommandSupport.java
index e830076..7041c4f 100644
--- 
a/admin/command/src/main/java/org/apache/karaf/admin/command/AdminCommandSupport.java
+++ 
b/admin/command/src/main/java/org/apache/karaf/admin/command/AdminCommandSupport.java
@@ -20,6 +20,12 @@ import org.apache.karaf.admin.AdminService;
 import org.apache.karaf.admin.Instance;
 import org.apache.karaf.shell.console.OsgiCommandSupport;
 
+import java.net.MalformedURLException;
+import java.net.URL;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
 public abstract class AdminCommandSupport extends OsgiCommandSupport {
 
 private AdminService adminService;
@@ -39,4 +45,17 @@ public abstract class AdminCommandSupport extends 
OsgiCommandSupport {
 }
 return i;
 }
+
+protected static MapString, URL getResources(ListString resources) 
throws MalformedURLException {
+MapString, URL result = new HashMapString, URL();
+if (resources != null) {
+for(String resource : resources) {
+String path = resource.substring(0, resource.indexOf(=));
+String location = resource.substring(path.length() + 1);
+URL url = new URL(location);
+result.put(path, url);
+}
+}
+return result;
+}
 }

http://git-wip-us.apache.org/repos/asf/karaf/blob/4d0b2966/admin/command/src/main/java/org/apache/karaf/admin/command/CloneCommand.java
--
diff --git 
a/admin/command/src/main/java/org/apache/karaf/admin/command/CloneCommand.java 
b/admin/command/src/main/java/org/apache/karaf/admin/command/CloneCommand.java
index 2ee26f8..0daac2f 100644
--- 
a/admin/command/src/main/java/org/apache/karaf/admin/command/CloneCommand.java
+++ 
b/admin/command/src/main/java/org/apache/karaf/admin/command/CloneCommand.java
@@ -21,6 +21,10 @@ import org.apache.felix.gogo.commands.Command;
 import org.apache.felix.gogo.commands.Option;
 import org.apache.karaf.admin.InstanceSettings;
 
+import java.net.URL;
+import java.util.List;
+import java.util.Map;
+
 /**
  * Clone an existing instance.
  */
@@ -45,15 +49,24 @@ public class CloneCommand extends AdminCommandSupport {
 @Option(name = -v, aliases = {--verbose}, description = Display 
actions performed by the command (disabled by default), required = false, 
multiValued = false)
 boolean verbose = false;
 
+@Option(name = -tr, aliases = {--text-resource},
+description = Add a text resource to the instance, required = 
false, multiValued = true)
+ListString textResourceLocation;
+
+@Option(name = -br, aliases = {--binary-resource},
+description = Add a text resource to the instance, required = 
false, multiValued = true)
+ListString binaryResourceLocations;
+
 @Argument(index = 0, name = name, description = The name of the source 
container instance, required = true, multiValued = false)
 String name;
 
 @Argument(index = 1, name = cloneName, description = The name of the 
cloned container instance, required = true, multiValued = false)
 String cloneName;
 
-
 protected Object doExecute() throws Exception {
-

Jenkins build is back to normal : karaf-2.x » Apache Karaf :: Shell :: ConfigAdmin Commands #170

2014-07-10 Thread Apache Jenkins Server
See 
https://builds.apache.org/job/karaf-2.x/org.apache.karaf.shell$org.apache.karaf.shell.config/170/changes



Jenkins build is unstable: karaf-2.x #170

2014-07-10 Thread Apache Jenkins Server
See https://builds.apache.org/job/karaf-2.x/170/changes



Jenkins build is unstable: karaf-2.x » Apache Karaf :: Integration Tests #170

2014-07-10 Thread Apache Jenkins Server
See 
https://builds.apache.org/job/karaf-2.x/org.apache.karaf.itests$itests/170/



git commit: [KARAF-1553] Command service references should be AUTO_EXPORT_INTERFACES

2014-07-10 Thread gnodet
Repository: karaf
Updated Branches:
  refs/heads/karaf-2.3.x bdf1ef7db - 12a40ccc9


[KARAF-1553] Command service references should be AUTO_EXPORT_INTERFACES

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

Branch: refs/heads/karaf-2.3.x
Commit: 12a40ccc99d9b1dde6ebe3050fcec5460d071b5f
Parents: bdf1ef7
Author: Guillaume Nodet gno...@gmail.com
Authored: Thu Jul 10 16:25:27 2014 +0200
Committer: Guillaume Nodet gno...@gmail.com
Committed: Thu Jul 10 16:25:27 2014 +0200

--
 .../apache/karaf/shell/console/commands/NamespaceHandler.java| 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/12a40ccc/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
--
diff --git 
a/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
 
b/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
index 662392a..dce14ad 100644
--- 
a/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
+++ 
b/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
@@ -147,9 +147,7 @@ public class NamespaceHandler implements 
org.apache.aries.blueprint.NamespaceHan
 MutableServiceMetadata commandService = 
context.createMetadata(MutableServiceMetadata.class);
 commandService.setActivation(MutableServiceMetadata.ACTIVATION_LAZY);
 commandService.setId(getName());
-
//commandService.setAutoExport(ServiceMetadata.AUTO_EXPORT_ALL_CLASSES);
-commandService.addInterface(CompletableFunction.class.getName());
-commandService.addInterface(Function.class.getName());
+commandService.setAutoExport(ServiceMetadata.AUTO_EXPORT_INTERFACES);
 commandService.setServiceComponent(command);
 commandService.addServiceProperty(createStringValue(context, 
osgi.command.scope),
   createStringValue(context, scope));



[1/2] git commit: [KARAF-1553] Command service references should be AUTO_EXPORT_INTERFACES

2014-07-10 Thread gnodet
Repository: karaf
Updated Branches:
  refs/heads/karaf-3.0.x 3b72ac0d7 - 6e5557515


[KARAF-1553] Command service references should be AUTO_EXPORT_INTERFACES


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

Branch: refs/heads/karaf-3.0.x
Commit: 6e5557515ec94546ced88152419e911492527a89
Parents: d6a9f18
Author: Guillaume Nodet gno...@gmail.com
Authored: Thu Jul 10 16:25:04 2014 +0200
Committer: Guillaume Nodet gno...@gmail.com
Committed: Thu Jul 10 17:21:49 2014 +0200

--
 .../apache/karaf/shell/console/commands/NamespaceHandler.java| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/6e555751/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
--
diff --git 
a/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
 
b/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
index 31d0b10..7fc7af3 100644
--- 
a/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
+++ 
b/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
@@ -157,7 +157,7 @@ public class NamespaceHandler implements 
org.apache.aries.blueprint.NamespaceHan
 MutableServiceMetadata commandService = 
context.createMetadata(MutableServiceMetadata.class);
 commandService.setActivation(MutableServiceMetadata.ACTIVATION_LAZY);
 commandService.setId(getName());
-commandService.setAutoExport(ServiceMetadata.AUTO_EXPORT_ALL_CLASSES);
+commandService.setAutoExport(ServiceMetadata.AUTO_EXPORT_INTERFACES);
 commandService.setServiceComponent(command);
 
 String scope = null;
@@ -225,7 +225,7 @@ public class NamespaceHandler implements 
org.apache.aries.blueprint.NamespaceHan
 MutableServiceMetadata subShellCommandService = 
context.createMetadata(MutableServiceMetadata.class);
 
subShellCommandService.setActivation(MutableServiceMetadata.ACTIVATION_LAZY);
 subShellCommandService.setId(subShellName == null ? getName() : 
subShellName);
-
subShellCommandService.setAutoExport(ServiceMetadata.AUTO_EXPORT_ALL_CLASSES);
+
subShellCommandService.setAutoExport(ServiceMetadata.AUTO_EXPORT_INTERFACES);
 subShellCommandService.setServiceComponent(subShellCommand);
 subShellCommandService.addServiceProperty(createStringValue(context, 
osgi.command.scope), createStringValue(context, *));
 if (scope != null  !scope.isEmpty()) {



[2/2] git commit: [KARAF-3108] Fix webconsole CSS

2014-07-10 Thread gnodet
[KARAF-3108] Fix webconsole CSS


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

Branch: refs/heads/karaf-3.0.x
Commit: d6a9f18447feec2dcd7acbf26ca9d5743b3a3657
Parents: 3b72ac0
Author: Guillaume Nodet gno...@gmail.com
Authored: Thu Jul 10 11:48:02 2014 +0200
Committer: Guillaume Nodet gno...@gmail.com
Committed: Thu Jul 10 17:21:49 2014 +0200

--
 .../main/resources/res/karaf/ui/webconsole.css  | 30 
 1 file changed, 24 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/d6a9f184/webconsole/branding/src/main/resources/res/karaf/ui/webconsole.css
--
diff --git a/webconsole/branding/src/main/resources/res/karaf/ui/webconsole.css 
b/webconsole/branding/src/main/resources/res/karaf/ui/webconsole.css
index a31e6bc..03fa9dd 100644
--- a/webconsole/branding/src/main/resources/res/karaf/ui/webconsole.css
+++ b/webconsole/branding/src/main/resources/res/karaf/ui/webconsole.css
@@ -66,6 +66,24 @@
white-space: nowrap;
 }
 
+/* New Category Based Navigation Tree (FELIX-3769) */
+#navmenu {
+ width: auto;
+}
+
+#navmenu li.ui-menu-item {
+ width: auto;
+}
+
+#navmenu li.navMenuItem-0 {
+display: inline-block;
+}
+
+/* Don't display caret on top-level menu (FELIX-3841) */
+#navmenu li.navMenuItem-0  a  span {
+display: none;
+}
+
 /* CENTRAL CONTENT AREA STYLING */
 #content, .ui-widget, .ui-widget input, .ui-widget select, .ui-widget 
textarea, .ui-widget button { font-size: 8pt }
 
@@ -119,16 +137,16 @@ table.nicetable th, table.nicetable td {
 
 /* tablesorter styling */
 tr .header {
-   background-image: url(../lib/bg.gif);
-   background-repeat: no-repeat;
-   background-position: center right;
-   cursor: pointer;
+   background-image: url(../lib/bg.gif) !important;
+   background-repeat: no-repeat !important;
+   background-position: center right !important;
+   cursor: pointer !important;
 }
 tr .headerSortUp {
-   background-image: url(../lib/asc.gif);
+   background-image: url(../lib/asc.gif) !important;
 }
 tr .headerSortDown {
-   background-image: url(../lib/desc.gif);
+   background-image: url(../lib/desc.gif) !important;
 }
 
 /* status line */



git commit: [KARAF-1553] Command service references should be AUTO_EXPORT_INTERFACES

2014-07-10 Thread gnodet
Repository: karaf
Updated Branches:
  refs/heads/master b6dd89383 - 18f417cd7


[KARAF-1553] Command service references should be AUTO_EXPORT_INTERFACES


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

Branch: refs/heads/master
Commit: 18f417cd7de3880b8f8c6f1b75d9e625ccecf9ea
Parents: b6dd893
Author: Guillaume Nodet gno...@gmail.com
Authored: Thu Jul 10 16:29:55 2014 +0200
Committer: Guillaume Nodet gno...@gmail.com
Committed: Thu Jul 10 17:21:56 2014 +0200

--
 .../apache/karaf/shell/console/commands/NamespaceHandler.java| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/18f417cd/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
--
diff --git 
a/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
 
b/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
index 3cf51d9..a534eea 100644
--- 
a/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
+++ 
b/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
@@ -166,7 +166,7 @@ public class NamespaceHandler implements 
org.apache.aries.blueprint.NamespaceHan
 MutableServiceMetadata commandService = 
context.createMetadata(MutableServiceMetadata.class);
 commandService.setActivation(MutableServiceMetadata.ACTIVATION_LAZY);
 commandService.setId(getName());
-commandService.setAutoExport(ServiceMetadata.AUTO_EXPORT_ALL_CLASSES);
+commandService.setAutoExport(ServiceMetadata.AUTO_EXPORT_INTERFACES);
 commandService.setServiceComponent(command);
 
 String scope;
@@ -232,7 +232,7 @@ public class NamespaceHandler implements 
org.apache.aries.blueprint.NamespaceHan
 MutableServiceMetadata subShellCommandService = 
context.createMetadata(MutableServiceMetadata.class);
 
subShellCommandService.setActivation(MutableServiceMetadata.ACTIVATION_LAZY);
 subShellCommandService.setId(subShellName);
-
subShellCommandService.setAutoExport(ServiceMetadata.AUTO_EXPORT_ALL_CLASSES);
+
subShellCommandService.setAutoExport(ServiceMetadata.AUTO_EXPORT_INTERFACES);
 subShellCommandService.setServiceComponent(subShellCommand);
 subShellCommandService.addServiceProperty(createStringValue(context, 
osgi.command.scope), createStringValue(context, *));
 subShellCommandService.addServiceProperty(createStringValue(context, 
osgi.command.function), createStringValue(context, scope));



git commit: [KARAF-1553] Command service references should be AUTO_EXPORT_INTERFACES

2014-07-10 Thread gnodet
Repository: karaf
Updated Branches:
  refs/heads/karaf-2.x 4d0b29667 - 8d377fa63


[KARAF-1553] Command service references should be AUTO_EXPORT_INTERFACES


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

Branch: refs/heads/karaf-2.x
Commit: 8d377fa63afe9c4169469dbfe14215cf6f7a7423
Parents: 4d0b296
Author: Guillaume Nodet gno...@gmail.com
Authored: Thu Jul 10 16:25:35 2014 +0200
Committer: Guillaume Nodet gno...@gmail.com
Committed: Thu Jul 10 17:21:45 2014 +0200

--
 .../apache/karaf/shell/console/commands/NamespaceHandler.java| 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/8d377fa6/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
--
diff --git 
a/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
 
b/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
index 662392a..dce14ad 100644
--- 
a/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
+++ 
b/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
@@ -147,9 +147,7 @@ public class NamespaceHandler implements 
org.apache.aries.blueprint.NamespaceHan
 MutableServiceMetadata commandService = 
context.createMetadata(MutableServiceMetadata.class);
 commandService.setActivation(MutableServiceMetadata.ACTIVATION_LAZY);
 commandService.setId(getName());
-
//commandService.setAutoExport(ServiceMetadata.AUTO_EXPORT_ALL_CLASSES);
-commandService.addInterface(CompletableFunction.class.getName());
-commandService.addInterface(Function.class.getName());
+commandService.setAutoExport(ServiceMetadata.AUTO_EXPORT_INTERFACES);
 commandService.setServiceComponent(command);
 commandService.addServiceProperty(createStringValue(context, 
osgi.command.scope),
   createStringValue(context, scope));



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

2014-07-10 Thread Apache Jenkins Server
See https://builds.apache.org/job/karaf-master/org.apache.karaf$karaf/2633/

--
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 :: JAAS
[INFO] Apache Karaf :: JAAS :: Boot
[INFO] Apache Karaf :: Util
[INFO] Apache Karaf :: Main
[INFO] Apache Karaf :: Features
[INFO] Apache Karaf :: Tooling
[INFO] Apache Karaf :: Tooling :: Maven Karaf Plugin for Services Metadata
[INFO] Apache Karaf :: Features :: Core
[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 :: 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 :: 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 :: 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 :: JPA :: Parent
[INFO] hibernate
[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 :: OSGi Services :: Coordinator
[INFO] Apache Karaf :: Subsystem :: Core
[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
[INFO] Apache Karaf :: Demos :: Demo Dump provider
[INFO] Apache Karaf :: Demos :: Deployer
[INFO] Apache Karaf :: Demos :: Deployer :: Kar
[INFO] Apache Karaf :: Demos :: Deployer :: Bundle
[INFO] Apache Karaf :: Archetypes
[INFO] Apache Karaf :: Archetypes :: Assembly Archetype
[INFO] Apache Karaf :: Archetypes :: Command Archetype
[INFO] Apache Karaf :: Archetypes :: Feature 

Build failed in Jenkins: karaf-master #2633

2014-07-10 Thread Apache Jenkins Server
See https://builds.apache.org/job/karaf-master/2633/changes

Changes:

[jbonofre] [KARAF-2830] Set the Java version check more flexible

[gnodet] [KARAF-1553] Command service references should be 
AUTO_EXPORT_INTERFACES

--
[...truncated 733 lines...]
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 9245 bytes
Compression is 0.0%
Took 0.23 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/webconsole/gogo/pom.xml to 
org.apache.karaf.webconsole/org.apache.karaf.webconsole.gogo/4.0.0-SNAPSHOT/org.apache.karaf.webconsole.gogo-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Web Console 
:: Gogo Plugin #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 5112 bytes
Compression is 0.0%
Took 0.28 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/bundle/springstate/pom.xml to 
org.apache.karaf.bundle/org.apache.karaf.bundle.springstate/4.0.0-SNAPSHOT/org.apache.karaf.bundle.springstate-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Bundle :: 
SpringStateService #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 4150 bytes
Compression is 0.0%
Took 0.2 sec
[JENKINS] Archiving https://builds.apache.org/job/karaf-master/ws/log/pom.xml 
to 
org.apache.karaf.log/org.apache.karaf.log.core/4.0.0-SNAPSHOT/org.apache.karaf.log.core-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Log :: Core 
#2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 5306 bytes
Compression is 0.0%
Took 0.29 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/demos/deployer/kar/pom.xml to 
org.apache.karaf.demos/my-kar/4.0.0-SNAPSHOT/my-kar-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Demos :: 
Deployer :: Kar #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 2624 bytes
Compression is 0.0%
Took 0.42 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/shell/table/pom.xml to 
org.apache.karaf.shell/org.apache.karaf.shell.table/4.0.0-SNAPSHOT/org.apache.karaf.shell.table-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Shell :: 
Table #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 2714 bytes
Compression is 0.0%
Took 0.23 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/shell/commands/pom.xml to 
org.apache.karaf.shell/org.apache.karaf.shell.commands/4.0.0-SNAPSHOT/org.apache.karaf.shell.commands-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Shell :: 
Various Commands #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 4959 bytes
Compression is 0.0%
Took 1.4 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/tooling/karaf-maven-plugin/pom.xml
 to 
org.apache.karaf.tooling/karaf-maven-plugin/4.0.0-SNAPSHOT/karaf-maven-plugin-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Tooling :: 
Maven Karaf Plugin #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 9177 bytes
Compression is 0.0%
Took 0.23 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/demos/web/pom.xml to 
org.apache.karaf.demos/web/4.0.0-SNAPSHOT/web-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Demos :: Web 
#2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 7026 bytes
Compression is 0.0%
Took 0.4 sec
[JENKINS] Archiving https://builds.apache.org/job/karaf-master/ws/jms/pom.xml 
to 
org.apache.karaf.jms/org.apache.karaf.jms.core/4.0.0-SNAPSHOT/org.apache.karaf.jms.core-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: JMS :: Core 
#2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 4457 bytes
Compression is 0.0%
Took 1.5 sec
[JENKINS] Archiving https://builds.apache.org/job/karaf-master/ws/jpa/pom.xml 
to org.apache.karaf.jpa/jpa-parent/4.0.0-SNAPSHOT/jpa-parent-4.0.0-SNAPSHOT.pom
No prior successful build to compare, so performing full copy of artifacts
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/demos/dump/pom.xml to 
org.apache.karaf.demos/dump/4.0.0-SNAPSHOT/dump-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Demos :: Demo 
Dump provider #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 2530 bytes
Compression is 0.0%
Took 0.29 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/webconsole/instance/pom.xml to 
org.apache.karaf.webconsole/org.apache.karaf.webconsole.instance/4.0.0-SNAPSHOT/org.apache.karaf.webconsole.instance-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Web Console 
:: 

git commit: Revert [KARAF-1553] Command service references should be AUTO_EXPORT_INTERFACES

2014-07-10 Thread jbonofre
Repository: karaf
Updated Branches:
  refs/heads/karaf-3.0.x 6e5557515 - b2d3d0d52


Revert [KARAF-1553] Command service references should be 
AUTO_EXPORT_INTERFACES

This reverts commit 6e5557515ec94546ced88152419e911492527a89.


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

Branch: refs/heads/karaf-3.0.x
Commit: b2d3d0d521ca9023523afa5a05d3436dd1b3ea9a
Parents: 6e55575
Author: Jean-Baptiste Onofré jbono...@apache.org
Authored: Thu Jul 10 17:30:34 2014 +0200
Committer: Jean-Baptiste Onofré jbono...@apache.org
Committed: Thu Jul 10 17:30:34 2014 +0200

--
 .../apache/karaf/shell/console/commands/NamespaceHandler.java| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/b2d3d0d5/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
--
diff --git 
a/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
 
b/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
index 7fc7af3..31d0b10 100644
--- 
a/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
+++ 
b/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
@@ -157,7 +157,7 @@ public class NamespaceHandler implements 
org.apache.aries.blueprint.NamespaceHan
 MutableServiceMetadata commandService = 
context.createMetadata(MutableServiceMetadata.class);
 commandService.setActivation(MutableServiceMetadata.ACTIVATION_LAZY);
 commandService.setId(getName());
-commandService.setAutoExport(ServiceMetadata.AUTO_EXPORT_INTERFACES);
+commandService.setAutoExport(ServiceMetadata.AUTO_EXPORT_ALL_CLASSES);
 commandService.setServiceComponent(command);
 
 String scope = null;
@@ -225,7 +225,7 @@ public class NamespaceHandler implements 
org.apache.aries.blueprint.NamespaceHan
 MutableServiceMetadata subShellCommandService = 
context.createMetadata(MutableServiceMetadata.class);
 
subShellCommandService.setActivation(MutableServiceMetadata.ACTIVATION_LAZY);
 subShellCommandService.setId(subShellName == null ? getName() : 
subShellName);
-
subShellCommandService.setAutoExport(ServiceMetadata.AUTO_EXPORT_INTERFACES);
+
subShellCommandService.setAutoExport(ServiceMetadata.AUTO_EXPORT_ALL_CLASSES);
 subShellCommandService.setServiceComponent(subShellCommand);
 subShellCommandService.addServiceProperty(createStringValue(context, 
osgi.command.scope), createStringValue(context, *));
 if (scope != null  !scope.isEmpty()) {



git commit: Revert [KARAF-1553] Command service references should be AUTO_EXPORT_INTERFACES

2014-07-10 Thread jbonofre
Repository: karaf
Updated Branches:
  refs/heads/master 18f417cd7 - f9913860d


Revert [KARAF-1553] Command service references should be 
AUTO_EXPORT_INTERFACES

This reverts commit 18f417cd7de3880b8f8c6f1b75d9e625ccecf9ea.


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

Branch: refs/heads/master
Commit: f9913860d8f0a88baf52da212d48e85fcfeb122f
Parents: 18f417c
Author: Jean-Baptiste Onofré jbono...@apache.org
Authored: Thu Jul 10 17:33:52 2014 +0200
Committer: Jean-Baptiste Onofré jbono...@apache.org
Committed: Thu Jul 10 17:33:52 2014 +0200

--
 .../apache/karaf/shell/console/commands/NamespaceHandler.java| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/f9913860/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
--
diff --git 
a/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
 
b/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
index a534eea..3cf51d9 100644
--- 
a/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
+++ 
b/shell/console/src/main/java/org/apache/karaf/shell/console/commands/NamespaceHandler.java
@@ -166,7 +166,7 @@ public class NamespaceHandler implements 
org.apache.aries.blueprint.NamespaceHan
 MutableServiceMetadata commandService = 
context.createMetadata(MutableServiceMetadata.class);
 commandService.setActivation(MutableServiceMetadata.ACTIVATION_LAZY);
 commandService.setId(getName());
-commandService.setAutoExport(ServiceMetadata.AUTO_EXPORT_INTERFACES);
+commandService.setAutoExport(ServiceMetadata.AUTO_EXPORT_ALL_CLASSES);
 commandService.setServiceComponent(command);
 
 String scope;
@@ -232,7 +232,7 @@ public class NamespaceHandler implements 
org.apache.aries.blueprint.NamespaceHan
 MutableServiceMetadata subShellCommandService = 
context.createMetadata(MutableServiceMetadata.class);
 
subShellCommandService.setActivation(MutableServiceMetadata.ACTIVATION_LAZY);
 subShellCommandService.setId(subShellName);
-
subShellCommandService.setAutoExport(ServiceMetadata.AUTO_EXPORT_INTERFACES);
+
subShellCommandService.setAutoExport(ServiceMetadata.AUTO_EXPORT_ALL_CLASSES);
 subShellCommandService.setServiceComponent(subShellCommand);
 subShellCommandService.addServiceProperty(createStringValue(context, 
osgi.command.scope), createStringValue(context, *));
 subShellCommandService.addServiceProperty(createStringValue(context, 
osgi.command.function), createStringValue(context, scope));



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

2014-07-10 Thread Apache Jenkins Server
See https://builds.apache.org/job/karaf-master/org.apache.karaf$karaf/2634/

--
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 :: JAAS
[INFO] Apache Karaf :: JAAS :: Boot
[INFO] Apache Karaf :: Util
[INFO] Apache Karaf :: Main
[INFO] Apache Karaf :: Features
[INFO] Apache Karaf :: Tooling
[INFO] Apache Karaf :: Tooling :: Maven Karaf Plugin for Services Metadata
[INFO] Apache Karaf :: Features :: Core
[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 :: 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 :: 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 :: 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 :: JPA :: Parent
[INFO] hibernate
[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 :: OSGi Services :: Coordinator
[INFO] Apache Karaf :: Subsystem :: Core
[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
[INFO] Apache Karaf :: Demos :: Demo Dump provider
[INFO] Apache Karaf :: Demos :: Deployer
[INFO] Apache Karaf :: Demos :: Deployer :: Kar
[INFO] Apache Karaf :: Demos :: Deployer :: Bundle
[INFO] Apache Karaf :: Archetypes
[INFO] Apache Karaf :: Archetypes :: Assembly Archetype
[INFO] Apache Karaf :: Archetypes :: Command Archetype
[INFO] Apache Karaf :: Archetypes :: Feature 

Build failed in Jenkins: karaf-master #2634

2014-07-10 Thread Apache Jenkins Server
See https://builds.apache.org/job/karaf-master/2634/changes

Changes:

[jbonofre] Revert [KARAF-1553] Command service references should be 
AUTO_EXPORT_INTERFACES

--
[...truncated 733 lines...]
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 9245 bytes
Compression is 0.0%
Took 0.15 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/webconsole/gogo/pom.xml to 
org.apache.karaf.webconsole/org.apache.karaf.webconsole.gogo/4.0.0-SNAPSHOT/org.apache.karaf.webconsole.gogo-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Web Console 
:: Gogo Plugin #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 5112 bytes
Compression is 0.0%
Took 0.27 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/bundle/springstate/pom.xml to 
org.apache.karaf.bundle/org.apache.karaf.bundle.springstate/4.0.0-SNAPSHOT/org.apache.karaf.bundle.springstate-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Bundle :: 
SpringStateService #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 4150 bytes
Compression is 0.0%
Took 0.21 sec
[JENKINS] Archiving https://builds.apache.org/job/karaf-master/ws/log/pom.xml 
to 
org.apache.karaf.log/org.apache.karaf.log.core/4.0.0-SNAPSHOT/org.apache.karaf.log.core-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Log :: Core 
#2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 5306 bytes
Compression is 0.0%
Took 1.9 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/demos/deployer/kar/pom.xml to 
org.apache.karaf.demos/my-kar/4.0.0-SNAPSHOT/my-kar-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Demos :: 
Deployer :: Kar #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 2624 bytes
Compression is 0.0%
Took 0.27 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/shell/table/pom.xml to 
org.apache.karaf.shell/org.apache.karaf.shell.table/4.0.0-SNAPSHOT/org.apache.karaf.shell.table-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Shell :: 
Table #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 2714 bytes
Compression is 0.0%
Took 0.21 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/shell/commands/pom.xml to 
org.apache.karaf.shell/org.apache.karaf.shell.commands/4.0.0-SNAPSHOT/org.apache.karaf.shell.commands-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Shell :: 
Various Commands #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 4959 bytes
Compression is 0.0%
Took 0.27 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/tooling/karaf-maven-plugin/pom.xml
 to 
org.apache.karaf.tooling/karaf-maven-plugin/4.0.0-SNAPSHOT/karaf-maven-plugin-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Tooling :: 
Maven Karaf Plugin #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 9177 bytes
Compression is 0.0%
Took 0.27 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/demos/web/pom.xml to 
org.apache.karaf.demos/web/4.0.0-SNAPSHOT/web-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Demos :: Web 
#2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 7026 bytes
Compression is 0.0%
Took 0.51 sec
[JENKINS] Archiving https://builds.apache.org/job/karaf-master/ws/jms/pom.xml 
to 
org.apache.karaf.jms/org.apache.karaf.jms.core/4.0.0-SNAPSHOT/org.apache.karaf.jms.core-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: JMS :: Core 
#2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 4457 bytes
Compression is 0.0%
Took 0.21 sec
[JENKINS] Archiving https://builds.apache.org/job/karaf-master/ws/jpa/pom.xml 
to org.apache.karaf.jpa/jpa-parent/4.0.0-SNAPSHOT/jpa-parent-4.0.0-SNAPSHOT.pom
No prior successful build to compare, so performing full copy of artifacts
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/demos/dump/pom.xml to 
org.apache.karaf.demos/dump/4.0.0-SNAPSHOT/dump-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Demos :: Demo 
Dump provider #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 2530 bytes
Compression is 0.0%
Took 0.25 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/webconsole/instance/pom.xml to 
org.apache.karaf.webconsole/org.apache.karaf.webconsole.instance/4.0.0-SNAPSHOT/org.apache.karaf.webconsole.instance-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Web Console 
:: Instance Plugin #2488
Archived 1 artifacts
Archive 

Jenkins build is still unstable: karaf-2.x #171

2014-07-10 Thread Apache Jenkins Server
See https://builds.apache.org/job/karaf-2.x/changes



Jenkins build is still unstable: karaf-2.x » Apache Karaf :: Integration Tests #171

2014-07-10 Thread Apache Jenkins Server
See 
https://builds.apache.org/job/karaf-2.x/org.apache.karaf.itests$itests/171/



Jenkins build is still unstable: karaf-3.0.x #155

2014-07-10 Thread Apache Jenkins Server
See https://builds.apache.org/job/karaf-3.0.x/changes



Jenkins build is still unstable: karaf-3.0.x » Apache Karaf :: Integration Tests #155

2014-07-10 Thread Apache Jenkins Server
See 
https://builds.apache.org/job/karaf-3.0.x/org.apache.karaf.itests$itests/155/



git commit: [KARAF-2749] Use Matcher.matches() instead of find() in the BundleSelector

2014-07-10 Thread jbonofre
Repository: karaf
Updated Branches:
  refs/heads/master 743539bb0 - d32c7bf10


[KARAF-2749] Use Matcher.matches() instead of find() in the BundleSelector


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

Branch: refs/heads/master
Commit: d32c7bf1027f221b870556523f901aea7b565241
Parents: 743539b
Author: Jean-Baptiste Onofré jbono...@apache.org
Authored: Thu Jul 10 19:19:42 2014 +0200
Committer: Jean-Baptiste Onofré jbono...@apache.org
Committed: Thu Jul 10 19:19:42 2014 +0200

--
 .../karaf/bundle/core/internal/BundleSelectorImpl.java  | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/d32c7bf1/bundle/core/src/main/java/org/apache/karaf/bundle/core/internal/BundleSelectorImpl.java
--
diff --git 
a/bundle/core/src/main/java/org/apache/karaf/bundle/core/internal/BundleSelectorImpl.java
 
b/bundle/core/src/main/java/org/apache/karaf/bundle/core/internal/BundleSelectorImpl.java
index bd728a2..638739b 100644
--- 
a/bundle/core/src/main/java/org/apache/karaf/bundle/core/internal/BundleSelectorImpl.java
+++ 
b/bundle/core/src/main/java/org/apache/karaf/bundle/core/internal/BundleSelectorImpl.java
@@ -54,7 +54,7 @@ public class BundleSelectorImpl {
 Pattern pattern = Pattern.compile(^\\d+$);
 Matcher matcher = pattern.matcher(id);
 
-if (matcher.find()) {
+if (matcher.matches()) {
 Bundle bundle = this.getBundleById(id);
 addBundle(bundle, id, bundles);
 return;
@@ -63,7 +63,7 @@ public class BundleSelectorImpl {
 // id as a number range
 pattern = Pattern.compile(^(\\d+)-(\\d+)$);
 matcher = pattern.matcher(id);
-if (matcher.find()) {
+if (matcher.matches()) {
 int index = id.indexOf('-');
 long startId = Long.parseLong(id.substring(0, index));
 long endId = Long.parseLong(id.substring(index + 1));
@@ -166,17 +166,17 @@ public class BundleSelectorImpl {
 if (version != null) {
 String bundleVersion = 
bundle.getHeaders().get(Constants.BUNDLE_VERSION);
 if (bundleVersion != null) {
-boolean nameMatch = (nameMatcher != null  
nameMatcher.find()) || symbolicNameMatcher.find();
+boolean nameMatch = (nameMatcher != null  
nameMatcher.matches()) || symbolicNameMatcher.matches();
 if (nameMatch) {
 Pattern versionPattern = Pattern.compile(version);
 Matcher versionMatcher = 
versionPattern.matcher(bundleVersion);
-if (versionMatcher.find()) {
+if (versionMatcher.matches()) {
 result.add(bundle);
 }
 }
 }
 } else {
-boolean nameMatch = (nameMatcher != null  
nameMatcher.find()) || symbolicNameMatcher.find();
+boolean nameMatch = (nameMatcher != null  
nameMatcher.matches()) || symbolicNameMatcher.matches();
 if (nameMatch) {
 result.add(bundle);
 }
@@ -194,7 +194,7 @@ public class BundleSelectorImpl {
 
 for (Bundle bundle : bundles) {
 Matcher locationMatcher = 
locationPattern.matcher(bundle.getLocation());
-if (locationMatcher.find()) {
+if (locationMatcher.matches()) {
 result.add(bundle);
 }
 }



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

2014-07-10 Thread Apache Jenkins Server
See https://builds.apache.org/job/karaf-master/org.apache.karaf$karaf/2635/

--
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...
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/felix/maven-bundle-plugin/2.5.0/maven-bundle-plugin-2.5.0.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/felix/maven-bundle-plugin/2.5.0/maven-bundle-plugin-2.5.0.pom
 (5 KB at 34.2 KB/sec)
Downloading: 
http://repo.maven.apache.org/maven2/org/apache/felix/maven-bundle-plugin/2.5.0/maven-bundle-plugin-2.5.0.jar
Downloaded: 
http://repo.maven.apache.org/maven2/org/apache/felix/maven-bundle-plugin/2.5.0/maven-bundle-plugin-2.5.0.jar
 (171 KB at 3973.7 KB/sec)
[INFO] 
[INFO] Reactor Build Order:
[INFO] 
[INFO] Apache Karaf
[INFO] Apache Karaf :: JAAS
[INFO] Apache Karaf :: JAAS :: Boot
[INFO] Apache Karaf :: Util
[INFO] Apache Karaf :: Main
[INFO] Apache Karaf :: Features
[INFO] Apache Karaf :: Tooling
[INFO] Apache Karaf :: Tooling :: Maven Karaf Plugin for Services Metadata
[INFO] Apache Karaf :: Features :: Core
[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 :: 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 :: 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 :: 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 :: JPA :: Parent
[INFO] hibernate
[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 :: OSGi Services :: Coordinator
[INFO] Apache Karaf :: Subsystem :: Core
[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 

Jenkins build is still unstable: karaf-2.x » Apache Karaf :: Integration Tests #172

2014-07-10 Thread Apache Jenkins Server
See 
https://builds.apache.org/job/karaf-2.x/org.apache.karaf.itests$itests/172/



Jenkins build is still unstable: karaf-2.x #172

2014-07-10 Thread Apache Jenkins Server
See https://builds.apache.org/job/karaf-2.x/changes



git commit: [KARAF-2749] Use Matcher.matches() instead of find() in the BundleSelector

2014-07-10 Thread jbonofre
Repository: karaf
Updated Branches:
  refs/heads/karaf-3.0.x b2d3d0d52 - 65e1457f7


[KARAF-2749] Use Matcher.matches() instead of find() in the BundleSelector


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

Branch: refs/heads/karaf-3.0.x
Commit: 65e1457f7222f28a209099b0bc2fb01636248523
Parents: b2d3d0d
Author: Jean-Baptiste Onofré jbono...@apache.org
Authored: Thu Jul 10 21:24:49 2014 +0200
Committer: Jean-Baptiste Onofré jbono...@apache.org
Committed: Thu Jul 10 21:24:49 2014 +0200

--
 .../karaf/bundle/core/internal/BundleSelectorImpl.java| 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/65e1457f/bundle/core/src/main/java/org/apache/karaf/bundle/core/internal/BundleSelectorImpl.java
--
diff --git 
a/bundle/core/src/main/java/org/apache/karaf/bundle/core/internal/BundleSelectorImpl.java
 
b/bundle/core/src/main/java/org/apache/karaf/bundle/core/internal/BundleSelectorImpl.java
index 5806f39..82abd01 100644
--- 
a/bundle/core/src/main/java/org/apache/karaf/bundle/core/internal/BundleSelectorImpl.java
+++ 
b/bundle/core/src/main/java/org/apache/karaf/bundle/core/internal/BundleSelectorImpl.java
@@ -54,7 +54,7 @@ public class BundleSelectorImpl {
 Pattern pattern = Pattern.compile(^\\d+$);
 Matcher matcher = pattern.matcher(id);
 
-if (matcher.find()) {
+if (matcher.matches()) {
 Bundle bundle = this.getBundleById(id);
 addBundle(bundle, id, bundles);
 return;
@@ -63,7 +63,7 @@ public class BundleSelectorImpl {
 // id as a number range
 pattern = Pattern.compile(^(\\d+)-(\\d+)$);
 matcher = pattern.matcher(id);
-if (matcher.find()) {
+if (matcher.matches()) {
 int index = id.indexOf('-');
 long startId = Long.parseLong(id.substring(0, index));
 long endId = Long.parseLong(id.substring(index + 1));
@@ -159,17 +159,17 @@ public class BundleSelectorImpl {
 if (version != null) {
 String bundleVersion = (String) 
bundles[i].getHeaders().get(Constants.BUNDLE_VERSION);
 if (bundleVersion != null) {
-boolean nameMatch = (nameMatcher != null  
nameMatcher.find()) || symbolicNameMatcher.find();
+boolean nameMatch = (nameMatcher != null  
nameMatcher.matches()) || symbolicNameMatcher.matches();
 if (nameMatch) {
 Pattern versionPattern = Pattern.compile(version);
 Matcher versionMatcher = 
versionPattern.matcher(bundleVersion);
-if (versionMatcher.find()) {
+if (versionMatcher.matches()) {
 result.add(bundles[i]);
 }
 }
 }
 } else {
-boolean nameMatch = (nameMatcher != null  
nameMatcher.find()) || symbolicNameMatcher.find();
+boolean nameMatch = (nameMatcher != null  
nameMatcher.matches()) || symbolicNameMatcher.matches();
 if (nameMatch) {
 result.add(bundles[i]);
 }



git commit: [KARAF-2749] Use Matcher.matches() instead of find() in the BundleSelector

2014-07-10 Thread jbonofre
Repository: karaf
Updated Branches:
  refs/heads/karaf-2.x 8d377fa63 - 9d10031a8


[KARAF-2749] Use Matcher.matches() instead of find() in the BundleSelector


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

Branch: refs/heads/karaf-2.x
Commit: 9d10031a8235d1e87173986d121ab4af990f725c
Parents: 8d377fa
Author: Jean-Baptiste Onofré jbono...@apache.org
Authored: Thu Jul 10 21:27:11 2014 +0200
Committer: Jean-Baptiste Onofré jbono...@apache.org
Committed: Thu Jul 10 21:27:11 2014 +0200

--
 .../mbeans/bundles/internal/BundlesSelector.java  | 10 +-
 .../java/org/apache/karaf/shell/osgi/BundleSelector.java  | 10 +-
 2 files changed, 10 insertions(+), 10 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/9d10031a/management/mbeans/bundles/src/main/java/org/apache/karaf/management/mbeans/bundles/internal/BundlesSelector.java
--
diff --git 
a/management/mbeans/bundles/src/main/java/org/apache/karaf/management/mbeans/bundles/internal/BundlesSelector.java
 
b/management/mbeans/bundles/src/main/java/org/apache/karaf/management/mbeans/bundles/internal/BundlesSelector.java
index 91b222e..b8d5903 100644
--- 
a/management/mbeans/bundles/src/main/java/org/apache/karaf/management/mbeans/bundles/internal/BundlesSelector.java
+++ 
b/management/mbeans/bundles/src/main/java/org/apache/karaf/management/mbeans/bundles/internal/BundlesSelector.java
@@ -50,7 +50,7 @@ public class BundlesSelector {
 // bundle ID is a number
 Pattern pattern = Pattern.compile(^\\d+$);
 Matcher matcher = pattern.matcher(bundleId);
-if (matcher.find()) {
+if (matcher.matches()) {
 Bundle bundle = this.getBundleById(bundleId);
 bundles.add(bundle);
 return bundles;
@@ -59,7 +59,7 @@ public class BundlesSelector {
 // bundle is an ID range
 pattern = Pattern.compile(^(\\d+)-(\\d+)$);
 matcher = pattern.matcher(bundleId);
-if (matcher.find()) {
+if (matcher.matches()) {
 int index = bundleId.indexOf('-');
 long startId = Long.parseLong(bundleId.substring(0, index));
 long stopId = Long.parseLong(bundleId.substring(index + 1));
@@ -147,17 +147,17 @@ public class BundlesSelector {
 if (version != null) {
 String bundleVersion = (String) 
bundles[i].getHeaders().get(Constants.BUNDLE_VERSION);
 if (bundleVersion != null) {
-boolean nameMatch = (nameMatcher != null  
nameMatcher.find()) || symbolicNameMatcher.find();
+boolean nameMatch = (nameMatcher != null  
nameMatcher.matches()) || symbolicNameMatcher.matches();
 if (nameMatch) {
 Pattern versionPattern = Pattern.compile(version);
 Matcher versionMatcher = 
versionPattern.matcher(bundleVersion);
-if (versionMatcher.find()) {
+if (versionMatcher.matches()) {
 result.add(bundles[i]);
 }
 }
 }
 } else {
-boolean nameMatch = (nameMatcher != null  
nameMatcher.find()) || symbolicNameMatcher.find();
+boolean nameMatch = (nameMatcher != null  
nameMatcher.matches()) || symbolicNameMatcher.matches();
 if (nameMatch) {
 result.add(bundles[i]);
 }

http://git-wip-us.apache.org/repos/asf/karaf/blob/9d10031a/shell/osgi/src/main/java/org/apache/karaf/shell/osgi/BundleSelector.java
--
diff --git 
a/shell/osgi/src/main/java/org/apache/karaf/shell/osgi/BundleSelector.java 
b/shell/osgi/src/main/java/org/apache/karaf/shell/osgi/BundleSelector.java
index 16852ec..d905dcd 100644
--- a/shell/osgi/src/main/java/org/apache/karaf/shell/osgi/BundleSelector.java
+++ b/shell/osgi/src/main/java/org/apache/karaf/shell/osgi/BundleSelector.java
@@ -46,7 +46,7 @@ public class BundleSelector {
 // id is a number
 Pattern pattern = Pattern.compile(^\\d+$);
 Matcher matcher = pattern.matcher(id);
-if (matcher.find()) {
+if (matcher.matches()) {
 Bundle bundle = this.getBundleById(id);
 addBundle(bundle, id, force, bundles);
 continue;
@@ -55,7 +55,7 @@ public class BundleSelector {

git commit: [KARAF-2749] Use Matcher.matches() instead of find() in the BundleSelector

2014-07-10 Thread jbonofre
Repository: karaf
Updated Branches:
  refs/heads/karaf-2.3.x 12a40ccc9 - 3160b7c0e


[KARAF-2749] Use Matcher.matches() instead of find() in the BundleSelector


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

Branch: refs/heads/karaf-2.3.x
Commit: 3160b7c0eafe9d7b5f6de4114e08cc98f450c38f
Parents: 12a40cc
Author: Jean-Baptiste Onofré jbono...@apache.org
Authored: Thu Jul 10 21:27:11 2014 +0200
Committer: Jean-Baptiste Onofré jbono...@apache.org
Committed: Thu Jul 10 21:28:13 2014 +0200

--
 .../mbeans/bundles/internal/BundlesSelector.java  | 10 +-
 .../java/org/apache/karaf/shell/osgi/BundleSelector.java  | 10 +-
 2 files changed, 10 insertions(+), 10 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/karaf/blob/3160b7c0/management/mbeans/bundles/src/main/java/org/apache/karaf/management/mbeans/bundles/internal/BundlesSelector.java
--
diff --git 
a/management/mbeans/bundles/src/main/java/org/apache/karaf/management/mbeans/bundles/internal/BundlesSelector.java
 
b/management/mbeans/bundles/src/main/java/org/apache/karaf/management/mbeans/bundles/internal/BundlesSelector.java
index 91b222e..b8d5903 100644
--- 
a/management/mbeans/bundles/src/main/java/org/apache/karaf/management/mbeans/bundles/internal/BundlesSelector.java
+++ 
b/management/mbeans/bundles/src/main/java/org/apache/karaf/management/mbeans/bundles/internal/BundlesSelector.java
@@ -50,7 +50,7 @@ public class BundlesSelector {
 // bundle ID is a number
 Pattern pattern = Pattern.compile(^\\d+$);
 Matcher matcher = pattern.matcher(bundleId);
-if (matcher.find()) {
+if (matcher.matches()) {
 Bundle bundle = this.getBundleById(bundleId);
 bundles.add(bundle);
 return bundles;
@@ -59,7 +59,7 @@ public class BundlesSelector {
 // bundle is an ID range
 pattern = Pattern.compile(^(\\d+)-(\\d+)$);
 matcher = pattern.matcher(bundleId);
-if (matcher.find()) {
+if (matcher.matches()) {
 int index = bundleId.indexOf('-');
 long startId = Long.parseLong(bundleId.substring(0, index));
 long stopId = Long.parseLong(bundleId.substring(index + 1));
@@ -147,17 +147,17 @@ public class BundlesSelector {
 if (version != null) {
 String bundleVersion = (String) 
bundles[i].getHeaders().get(Constants.BUNDLE_VERSION);
 if (bundleVersion != null) {
-boolean nameMatch = (nameMatcher != null  
nameMatcher.find()) || symbolicNameMatcher.find();
+boolean nameMatch = (nameMatcher != null  
nameMatcher.matches()) || symbolicNameMatcher.matches();
 if (nameMatch) {
 Pattern versionPattern = Pattern.compile(version);
 Matcher versionMatcher = 
versionPattern.matcher(bundleVersion);
-if (versionMatcher.find()) {
+if (versionMatcher.matches()) {
 result.add(bundles[i]);
 }
 }
 }
 } else {
-boolean nameMatch = (nameMatcher != null  
nameMatcher.find()) || symbolicNameMatcher.find();
+boolean nameMatch = (nameMatcher != null  
nameMatcher.matches()) || symbolicNameMatcher.matches();
 if (nameMatch) {
 result.add(bundles[i]);
 }

http://git-wip-us.apache.org/repos/asf/karaf/blob/3160b7c0/shell/osgi/src/main/java/org/apache/karaf/shell/osgi/BundleSelector.java
--
diff --git 
a/shell/osgi/src/main/java/org/apache/karaf/shell/osgi/BundleSelector.java 
b/shell/osgi/src/main/java/org/apache/karaf/shell/osgi/BundleSelector.java
index 1ede084..04acf44 100644
--- a/shell/osgi/src/main/java/org/apache/karaf/shell/osgi/BundleSelector.java
+++ b/shell/osgi/src/main/java/org/apache/karaf/shell/osgi/BundleSelector.java
@@ -46,7 +46,7 @@ public class BundleSelector {
 // id is a number
 Pattern pattern = Pattern.compile(^\\d+$);
 Matcher matcher = pattern.matcher(id);
-if (matcher.find()) {
+if (matcher.matches()) {
 Bundle bundle = this.getBundleById(id);
 addBundle(bundle, id, force, bundles);
 continue;
@@ -55,7 +55,7 @@ public class BundleSelector {

Build failed in Jenkins: karaf-2.x #173

2014-07-10 Thread Apache Jenkins Server
See https://builds.apache.org/job/karaf-2.x/173/changes

Changes:

[jbonofre] [KARAF-2749] Use Matcher.matches() instead of find() in the 
BundleSelector

--
[...truncated 16716 lines...]
[JENKINS] Archiving https://builds.apache.org/job/karaf-2.x/ws/shell/pom.xml 
to org.apache.karaf.shell/shell/2.4.0-SNAPSHOT/shell-2.4.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Shell #172
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 1999 bytes
Compression is 0.0%
Took 0.1 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/archetypes/bundle/pom.xml to 
org.apache.karaf.archetypes/karaf-bundle-archetype/2.4.0-SNAPSHOT/karaf-bundle-archetype-2.4.0-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/archetypes/bundle/target/karaf-bundle-archetype-2.4.0-SNAPSHOT.jar
 to 
org.apache.karaf.archetypes/karaf-bundle-archetype/2.4.0-20140710.203035-141/karaf-bundle-archetype-2.4.0-20140710.203035-141.jar
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Archetypes :: 
Bundle Archetype #172
Archived 2 artifacts
Archive block size is 32768
Received 0 blocks and 11318 bytes
Compression is 0.0%
Took 1.2 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/admin/core/pom.xml to 
org.apache.karaf.admin/org.apache.karaf.admin.core/2.4.0-SNAPSHOT/org.apache.karaf.admin.core-2.4.0-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/admin/core/target/org.apache.karaf.admin.core-2.4.0-SNAPSHOT.jar
 to 
org.apache.karaf.admin/org.apache.karaf.admin.core/2.4.0-20140710.201636-154/org.apache.karaf.admin.core-2.4.0-20140710.201636-154.jar
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Admin :: Core 
#172
Archived 2 artifacts
Archive block size is 32768
Received 0 blocks and 142693 bytes
Compression is 0.0%
Took 0.26 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/shell/config/pom.xml to 
org.apache.karaf.shell/org.apache.karaf.shell.config/2.4.0-SNAPSHOT/org.apache.karaf.shell.config-2.4.0-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/shell/config/target/org.apache.karaf.shell.config-2.4.0-SNAPSHOT.jar
 to 
org.apache.karaf.shell/org.apache.karaf.shell.config/2.4.0-20140710.201808-150/org.apache.karaf.shell.config-2.4.0-20140710.201808-150.jar
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Shell :: 
ConfigAdmin Commands #172
Archived 2 artifacts
Archive block size is 32768
Received 0 blocks and 100998 bytes
Compression is 0.0%
Took 0.17 sec
[JENKINS] Archiving https://builds.apache.org/job/karaf-2.x/ws/pom.xml to 
org.apache.karaf/karaf/2.4.0-SNAPSHOT/karaf-2.4.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-2.x ? Apache Karaf #172
Archived 1 artifacts
Archive block size is 32768
Received 2 blocks and 19188 bytes
Compression is 77.4%
Took 85 ms
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/shell/packages/pom.xml to 
org.apache.karaf.shell/org.apache.karaf.shell.packages/2.4.0-SNAPSHOT/org.apache.karaf.shell.packages-2.4.0-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/shell/packages/target/org.apache.karaf.shell.packages-2.4.0-SNAPSHOT.jar
 to 
org.apache.karaf.shell/org.apache.karaf.shell.packages/2.4.0-20140710.201836-148/org.apache.karaf.shell.packages-2.4.0-20140710.201836-148.jar
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Shell :: 
PackageAdmin Commands #172
Archived 2 artifacts
Archive block size is 32768
Received 0 blocks and 22208 bytes
Compression is 0.0%
Took 76 ms
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/demos/deployer/wrap/dependency-reduced-pom.xml
 to 
org.apache.karaf.demos.deployer.wrap/osgi.commons-lang/2.4.0-SNAPSHOT/osgi.commons-lang-2.4.0-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/demos/deployer/wrap/target/osgi.commons-lang-2.4.0-SNAPSHOT.jar
 to 
org.apache.karaf.demos.deployer.wrap/osgi.commons-lang/2.4.0-20140710.202818-143/osgi.commons-lang-2.4.0-20140710.202818-143.jar
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Demos :: 
Deployer :: Wrap Bundle osgi.commons-lang #172
Archived 2 artifacts
Archive block size is 32768
Received 0 blocks and 274395 bytes
Compression is 0.0%
Took 0.2 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/archetypes/assembly/pom.xml to 
org.apache.karaf.archetypes/karaf-assembly-archetype/2.4.0-SNAPSHOT/karaf-assembly-archetype-2.4.0-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.x/ws/archetypes/assembly/target/karaf-assembly-archetype-2.4.0-SNAPSHOT.jar
 to 
org.apache.karaf.archetypes/karaf-assembly-archetype/2.4.0-20140710.202953-141/karaf-assembly-archetype-2.4.0-20140710.202953-141.jar
Sending artifact delta relative to karaf-2.x ? Apache Karaf :: Archetypes :: 
Assembly Archetype #172
Archived 2 artifacts
Archive block size is 

Jenkins build is still unstable: karaf-3.0.x #156

2014-07-10 Thread Apache Jenkins Server
See https://builds.apache.org/job/karaf-3.0.x/changes



Build failed in Jenkins: karaf-2.x » Apache Karaf :: Integration Tests #173

2014-07-10 Thread Apache Jenkins Server
See 
https://builds.apache.org/job/karaf-2.x/org.apache.karaf.itests$itests/173/

--
[INFO] 
[INFO] 
[INFO] Building Apache Karaf :: Integration Tests 2.4.0-SNAPSHOT
[INFO] 
Downloading: 
http://svn.apache.org/repos/asf/servicemix/m2-repo/org/ops4j/pax/exam/pax-exam-container-karaf/4.0.0/pax-exam-container-karaf-4.0.0.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/ops4j/pax/exam/pax-exam-container-karaf/4.0.0/pax-exam-container-karaf-4.0.0.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/ops4j/pax/exam/pax-exam-container-karaf/4.0.0/pax-exam-container-karaf-4.0.0.pom
 (5 KB at 29.2 KB/sec)
Downloading: 
http://svn.apache.org/repos/asf/servicemix/m2-repo/org/ops4j/pax/exam/4.0.0/exam-4.0.0.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/ops4j/pax/exam/4.0.0/exam-4.0.0.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/ops4j/pax/exam/4.0.0/exam-4.0.0.pom (32 
KB at 682.6 KB/sec)
Downloading: 
http://svn.apache.org/repos/asf/servicemix/m2-repo/org/ops4j/pax/exam-reactor/4.0.0/exam-reactor-4.0.0.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/ops4j/pax/exam-reactor/4.0.0/exam-reactor-4.0.0.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/ops4j/pax/exam-reactor/4.0.0/exam-reactor-4.0.0.pom
 (4 KB at 126.2 KB/sec)
Downloading: 
http://svn.apache.org/repos/asf/servicemix/m2-repo/org/ops4j/pax/exam/pax-exam/4.0.0/pax-exam-4.0.0.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/ops4j/pax/exam/pax-exam/4.0.0/pax-exam-4.0.0.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/ops4j/pax/exam/pax-exam/4.0.0/pax-exam-4.0.0.pom
 (3 KB at 87.5 KB/sec)
Downloading: 
http://svn.apache.org/repos/asf/servicemix/m2-repo/org/ops4j/pax/exam/pax-exam-container-remote/4.0.0/pax-exam-container-remote-4.0.0.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/ops4j/pax/exam/pax-exam-container-remote/4.0.0/pax-exam-container-remote-4.0.0.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/ops4j/pax/exam/pax-exam-container-remote/4.0.0/pax-exam-container-remote-4.0.0.pom
 (3 KB at 75.2 KB/sec)
Downloading: 
http://svn.apache.org/repos/asf/servicemix/m2-repo/org/ops4j/pax/exam/pax-exam-container-rbc-client/4.0.0/pax-exam-container-rbc-client-4.0.0.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/ops4j/pax/exam/pax-exam-container-rbc-client/4.0.0/pax-exam-container-rbc-client-4.0.0.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/ops4j/pax/exam/pax-exam-container-rbc-client/4.0.0/pax-exam-container-rbc-client-4.0.0.pom
 (2 KB at 54.6 KB/sec)
Downloading: 
http://svn.apache.org/repos/asf/servicemix/m2-repo/org/ops4j/pax/exam/pax-exam-container-rbc/4.0.0/pax-exam-container-rbc-4.0.0.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/ops4j/pax/exam/pax-exam-container-rbc/4.0.0/pax-exam-container-rbc-4.0.0.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/ops4j/pax/exam/pax-exam-container-rbc/4.0.0/pax-exam-container-rbc-4.0.0.pom
 (3 KB at 85.6 KB/sec)
Downloading: 
http://svn.apache.org/repos/asf/servicemix/m2-repo/org/ops4j/pax/exam/pax-exam-spi/4.0.0/pax-exam-spi-4.0.0.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/ops4j/pax/exam/pax-exam-spi/4.0.0/pax-exam-spi-4.0.0.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/ops4j/pax/exam/pax-exam-spi/4.0.0/pax-exam-spi-4.0.0.pom
 (4 KB at 120.8 KB/sec)
Downloading: 
http://svn.apache.org/repos/asf/servicemix/m2-repo/org/ops4j/pax/swissbox/pax-swissbox-core/1.7.1/pax-swissbox-core-1.7.1.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/ops4j/pax/swissbox/pax-swissbox-core/1.7.1/pax-swissbox-core-1.7.1.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/ops4j/pax/swissbox/pax-swissbox-core/1.7.1/pax-swissbox-core-1.7.1.pom
 (2 KB at 42.2 KB/sec)
Downloading: 
http://svn.apache.org/repos/asf/servicemix/m2-repo/org/ops4j/pax/swissbox/pax-swissbox-framework/1.7.1/pax-swissbox-framework-1.7.1.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/ops4j/pax/swissbox/pax-swissbox-framework/1.7.1/pax-swissbox-framework-1.7.1.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/ops4j/pax/swissbox/pax-swissbox-framework/1.7.1/pax-swissbox-framework-1.7.1.pom
 (4 KB at 80.5 KB/sec)
Downloading: 
http://svn.apache.org/repos/asf/servicemix/m2-repo/org/ops4j/pax/exam/pax-exam-junit4/4.0.0/pax-exam-junit4-4.0.0.pom
Downloading: 
http://repo.maven.apache.org/maven2/org/ops4j/pax/exam/pax-exam-junit4/4.0.0/pax-exam-junit4-4.0.0.pom
Downloaded: 
http://repo.maven.apache.org/maven2/org/ops4j/pax/exam/pax-exam-junit4/4.0.0/pax-exam-junit4-4.0.0.pom
 (2 KB at 44.4 KB/sec)
Downloading: 
http://svn.apache.org/repos/asf/servicemix/m2-repo/org/ops4j/pax/exam/pax-exam-container-karaf/4.0.0/pax-exam-container-karaf-4.0.0.jar

Jenkins build is still unstable: karaf-3.0.x » Apache Karaf :: Integration Tests #156

2014-07-10 Thread Apache Jenkins Server
See 
https://builds.apache.org/job/karaf-3.0.x/org.apache.karaf.itests$itests/156/



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

2014-07-10 Thread Apache Jenkins Server
See https://builds.apache.org/job/karaf-master/org.apache.karaf$karaf/2636/

--
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 :: JAAS
[INFO] Apache Karaf :: JAAS :: Boot
[INFO] Apache Karaf :: Util
[INFO] Apache Karaf :: Main
[INFO] Apache Karaf :: Features
[INFO] Apache Karaf :: Tooling
[INFO] Apache Karaf :: Tooling :: Maven Karaf Plugin for Services Metadata
[INFO] Apache Karaf :: Features :: Core
[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 :: 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 :: 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 :: 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 :: JPA :: Parent
[INFO] hibernate
[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 :: OSGi Services :: Coordinator
[INFO] Apache Karaf :: Subsystem :: Core
[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
[INFO] Apache Karaf :: Demos :: Demo Dump provider
[INFO] Apache Karaf :: Demos :: Deployer
[INFO] Apache Karaf :: Demos :: Deployer :: Kar
[INFO] Apache Karaf :: Demos :: Deployer :: Bundle
[INFO] Apache Karaf :: Archetypes
[INFO] Apache Karaf :: Archetypes :: Assembly Archetype
[INFO] Apache Karaf :: Archetypes :: Command Archetype
[INFO] Apache Karaf :: Archetypes :: Feature 

Build failed in Jenkins: karaf-master #2636

2014-07-10 Thread Apache Jenkins Server
See https://builds.apache.org/job/karaf-master/2636/

--
[...truncated 733 lines...]
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 9245 bytes
Compression is 0.0%
Took 0.3 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/webconsole/gogo/pom.xml to 
org.apache.karaf.webconsole/org.apache.karaf.webconsole.gogo/4.0.0-SNAPSHOT/org.apache.karaf.webconsole.gogo-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Web Console 
:: Gogo Plugin #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 5112 bytes
Compression is 0.0%
Took 0.3 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/bundle/springstate/pom.xml to 
org.apache.karaf.bundle/org.apache.karaf.bundle.springstate/4.0.0-SNAPSHOT/org.apache.karaf.bundle.springstate-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Bundle :: 
SpringStateService #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 4150 bytes
Compression is 0.0%
Took 0.35 sec
[JENKINS] Archiving https://builds.apache.org/job/karaf-master/ws/log/pom.xml 
to 
org.apache.karaf.log/org.apache.karaf.log.core/4.0.0-SNAPSHOT/org.apache.karaf.log.core-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Log :: Core 
#2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 5306 bytes
Compression is 0.0%
Took 0.23 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/demos/deployer/kar/pom.xml to 
org.apache.karaf.demos/my-kar/4.0.0-SNAPSHOT/my-kar-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Demos :: 
Deployer :: Kar #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 2624 bytes
Compression is 0.0%
Took 1.7 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/shell/table/pom.xml to 
org.apache.karaf.shell/org.apache.karaf.shell.table/4.0.0-SNAPSHOT/org.apache.karaf.shell.table-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Shell :: 
Table #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 2714 bytes
Compression is 0.0%
Took 0.24 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/shell/commands/pom.xml to 
org.apache.karaf.shell/org.apache.karaf.shell.commands/4.0.0-SNAPSHOT/org.apache.karaf.shell.commands-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Shell :: 
Various Commands #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 4959 bytes
Compression is 0.0%
Took 0.24 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/tooling/karaf-maven-plugin/pom.xml
 to 
org.apache.karaf.tooling/karaf-maven-plugin/4.0.0-SNAPSHOT/karaf-maven-plugin-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Tooling :: 
Maven Karaf Plugin #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 9177 bytes
Compression is 0.0%
Took 1.6 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/demos/web/pom.xml to 
org.apache.karaf.demos/web/4.0.0-SNAPSHOT/web-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Demos :: Web 
#2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 7026 bytes
Compression is 0.0%
Took 0.41 sec
[JENKINS] Archiving https://builds.apache.org/job/karaf-master/ws/jms/pom.xml 
to 
org.apache.karaf.jms/org.apache.karaf.jms.core/4.0.0-SNAPSHOT/org.apache.karaf.jms.core-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: JMS :: Core 
#2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 4457 bytes
Compression is 0.0%
Took 0.2 sec
[JENKINS] Archiving https://builds.apache.org/job/karaf-master/ws/jpa/pom.xml 
to org.apache.karaf.jpa/jpa-parent/4.0.0-SNAPSHOT/jpa-parent-4.0.0-SNAPSHOT.pom
No prior successful build to compare, so performing full copy of artifacts
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/demos/dump/pom.xml to 
org.apache.karaf.demos/dump/4.0.0-SNAPSHOT/dump-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Demos :: Demo 
Dump provider #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 2530 bytes
Compression is 0.0%
Took 0.35 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-master/ws/webconsole/instance/pom.xml to 
org.apache.karaf.webconsole/org.apache.karaf.webconsole.instance/4.0.0-SNAPSHOT/org.apache.karaf.webconsole.instance-4.0.0-SNAPSHOT.pom
Sending artifact delta relative to karaf-master ? Apache Karaf :: Web Console 
:: Instance Plugin #2488
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 4116 bytes
Compression is 0.0%
Took 0.35 sec
[JENKINS] Archiving 

Jenkins build is still unstable: karaf-3.0.x » Apache Karaf :: Integration Tests #157

2014-07-10 Thread Apache Jenkins Server
See 
https://builds.apache.org/job/karaf-3.0.x/org.apache.karaf.itests$itests/157/



Jenkins build is still unstable: karaf-3.0.x #157

2014-07-10 Thread Apache Jenkins Server
See https://builds.apache.org/job/karaf-3.0.x/changes



Jenkins build is unstable: karaf-2.x » Apache Karaf :: Integration Tests #174

2014-07-10 Thread Apache Jenkins Server
See 
https://builds.apache.org/job/karaf-2.x/org.apache.karaf.itests$itests/174/



Jenkins build is unstable: karaf-2.x #174

2014-07-10 Thread Apache Jenkins Server
See https://builds.apache.org/job/karaf-2.x/174/



Build failed in Jenkins: Karaf-WebConsole #648

2014-07-10 Thread Apache Jenkins Server
See https://builds.apache.org/job/Karaf-WebConsole/648/

--
Started by timer
Building remotely on ubuntu3 (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.



Build failed in Jenkins: karaf-2.3.x » Apache Karaf :: Integration Tests #1234

2014-07-10 Thread Apache Jenkins Server
See 
https://builds.apache.org/job/karaf-2.3.x/org.apache.karaf.itests$itests/1234/

--
[INFO] 
[INFO] 
[INFO] Building Apache Karaf :: Integration Tests 2.3.6-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ itests ---
[INFO] Deleting 
https://builds.apache.org/job/karaf-2.3.x/org.apache.karaf.itests$itests/ws/target


Build failed in Jenkins: karaf-2.3.x #1234

2014-07-10 Thread Apache Jenkins Server
See https://builds.apache.org/job/karaf-2.3.x/1234/

--
[...truncated 10256 lines...]
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/webconsole/features/pom.xml to 
org.apache.karaf.webconsole/org.apache.karaf.webconsole.features/2.3.6-SNAPSHOT/org.apache.karaf.webconsole.features-2.3.6-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/webconsole/features/target/org.apache.karaf.webconsole.features-2.3.6-SNAPSHOT.jar
 to 
org.apache.karaf.webconsole/org.apache.karaf.webconsole.features/2.3.6-20140711.031534-76/org.apache.karaf.webconsole.features-2.3.6-20140711.031534-76.jar
No artifacts from karaf-2.3.x ? Apache Karaf :: Web Console :: Features Plugin 
#1233 to compare, so performing full copy of artifacts
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/tooling/pom.xml to 
org.apache.karaf.tooling/tooling/2.3.6-SNAPSHOT/tooling-2.3.6-SNAPSHOT.pom
No artifacts from karaf-2.3.x ? Apache Karaf :: Tooling #1233 to compare, so 
performing full copy of artifacts
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/features/command/pom.xml to 
org.apache.karaf.features/org.apache.karaf.features.command/2.3.6-SNAPSHOT/org.apache.karaf.features.command-2.3.6-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/features/command/target/org.apache.karaf.features.command-2.3.6-SNAPSHOT.jar
 to 
org.apache.karaf.features/org.apache.karaf.features.command/2.3.6-20140711.030547-80/org.apache.karaf.features.command-2.3.6-20140711.030547-80.jar
No artifacts from karaf-2.3.x ? Apache Karaf :: Features :: Command #1233 to 
compare, so performing full copy of artifacts
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/features/management/pom.xml to 
org.apache.karaf.features/org.apache.karaf.features.management/2.3.6-SNAPSHOT/org.apache.karaf.features.management-2.3.6-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/features/management/target/org.apache.karaf.features.management-2.3.6-SNAPSHOT.jar
 to 
org.apache.karaf.features/org.apache.karaf.features.management/2.3.6-20140711.030616-80/org.apache.karaf.features.management-2.3.6-20140711.030616-80.jar
No artifacts from karaf-2.3.x ? Apache Karaf :: Features :: Management #1233 to 
compare, so performing full copy of artifacts
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/deployer/kar/pom.xml to 
org.apache.karaf.deployer/org.apache.karaf.deployer.kar/2.3.6-SNAPSHOT/org.apache.karaf.deployer.kar-2.3.6-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/deployer/kar/target/org.apache.karaf.deployer.kar-2.3.6-SNAPSHOT.jar
 to 
org.apache.karaf.deployer/org.apache.karaf.deployer.kar/2.3.6-20140711.030810-80/org.apache.karaf.deployer.kar-2.3.6-20140711.030810-80.jar
No artifacts from karaf-2.3.x ? Apache Karaf :: Deployer :: Karaf Archive 
(.kar) #1233 to compare, so performing full copy of artifacts
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/itests/pom.xml to 
org.apache.karaf.itests/itests/2.3.6-SNAPSHOT/itests-2.3.6-SNAPSHOT.pom
Sending artifact delta relative to karaf-2.3.x ? Apache Karaf :: Integration 
Tests #1192
Archived 1 artifacts
Archive block size is 32768
Received 0 blocks and 5398 bytes
Compression is 0.0%
Took 0.29 sec
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/diagnostic/common/pom.xml to 
org.apache.karaf.diagnostic/org.apache.karaf.diagnostic.common/2.3.6-SNAPSHOT/org.apache.karaf.diagnostic.common-2.3.6-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/diagnostic/common/target/org.apache.karaf.diagnostic.common-2.3.6-SNAPSHOT.jar
 to 
org.apache.karaf.diagnostic/org.apache.karaf.diagnostic.common/2.3.6-20140711.031723-76/org.apache.karaf.diagnostic.common-2.3.6-20140711.031723-76.jar
No artifacts from karaf-2.3.x ? Apache Karaf :: Diagnostic :: Common #1233 to 
compare, so performing full copy of artifacts
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/management/server/pom.xml to 
org.apache.karaf.management/org.apache.karaf.management.server/2.3.6-SNAPSHOT/org.apache.karaf.management.server-2.3.6-SNAPSHOT.pom
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/management/server/target/org.apache.karaf.management.server-2.3.6-SNAPSHOT.jar
 to 
org.apache.karaf.management/org.apache.karaf.management.server/2.3.6-20140711.030604-80/org.apache.karaf.management.server-2.3.6-20140711.030604-80.jar
No artifacts from karaf-2.3.x ? Apache Karaf :: Management #1233 to compare, so 
performing full copy of artifacts
[JENKINS] Archiving 
https://builds.apache.org/job/karaf-2.3.x/ws/management/mbeans/packages/pom.xml
 to 
org.apache.karaf.management.mbeans/org.apache.karaf.management.mbeans.packages/2.3.6-SNAPSHOT/org.apache.karaf.management.mbeans.packages-2.3.6-SNAPSHOT.pom
[JENKINS] Archiving