Jenkins build is still unstable: Tamaya-Sandbox-Master #515

2017-03-30 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: Tamaya-Sandbox-Master » Apache Tamaya :: OSGi Integration :: ConfigAdmin #515

2017-03-30 Thread Apache Jenkins Server
See 




Jenkins build is unstable: Tamaya-Sandbox-Master #514

2017-03-30 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: Tamaya-Sandbox-Master » Apache Tamaya :: OSGi Integration :: ConfigAdmin #514

2017-03-30 Thread Apache Jenkins Server
See 




Build failed in Jenkins: Tamaya-Sandbox-Master #513

2017-03-30 Thread Apache Jenkins Server
See 

--
Started by an SCM change
[EnvInject] - Loading node environment variables.
[EnvInject] - Preparing an environment for the build.
[EnvInject] - Keeping Jenkins system variables.
[EnvInject] - Keeping Jenkins build variables.
[EnvInject] - Injecting contributions.
Building remotely on ubuntu-2 (ubuntu) in workspace 

FATAL: java.io.IOException: Remote call on ubuntu-2 failed
hudson.remoting.RemotingSystemException: java.io.IOException: Remote call on 
ubuntu-2 failed
at 
hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:272)
at com.sun.proxy.$Proxy96.hasGitRepo(Unknown Source)
at 
org.jenkinsci.plugins.gitclient.RemoteGitImpl.hasGitRepo(RemoteGitImpl.java:280)
at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1046)
at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1101)
at hudson.scm.SCM.checkout(SCM.java:495)
at hudson.model.AbstractProject.checkout(AbstractProject.java:1278)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:604)
at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:529)
at hudson.model.Run.execute(Run.java:1728)
at hudson.maven.MavenModuleSetBuild.run(MavenModuleSetBuild.java:544)
at hudson.model.ResourceController.execute(ResourceController.java:98)
at hudson.model.Executor.run(Executor.java:404)
Caused by: java.io.IOException: Remote call on ubuntu-2 failed
at hudson.remoting.Channel.call(Channel.java:830)
at 
hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:256)
... 13 more
Caused by: java.lang.OutOfMemoryError: Java heap space


incubator-tamaya-sandbox git commit: TAMAYA-260: Added basic tests for MP builder spi.

2017-03-30 Thread anatole
Repository: incubator-tamaya-sandbox
Updated Branches:
  refs/heads/master 2852c48e1 -> 5ee4802c7


TAMAYA-260: Added basic tests for MP builder spi.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/commit/5ee4802c
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/tree/5ee4802c
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/diff/5ee4802c

Branch: refs/heads/master
Commit: 5ee4802c7d0a2170a3c7e0b1ed79ad68ac8d82fd
Parents: 2852c48
Author: anatole 
Authored: Thu Mar 30 17:47:15 2017 +0200
Committer: anatole 
Committed: Thu Mar 30 17:47:15 2017 +0200

--
 .../tamaya/microprofile/MicroprofileConfig.java |   4 +-
 .../MicroprofileConfigProviderResolver.java |   5 +-
 .../microprofile/MicroprofileConfigSource.java  |   4 +-
 .../MicroprofileConfigSourceProvider.java   |   4 +-
 .../microprofile/MicroprofileConverter.java |   4 +-
 .../microprofile/TamayaConfiguration.java   |   4 +-
 .../microprofile/TamayaPropertyConverter.java   |   4 +-
 .../microprofile/TamayaPropertySource.java  |   4 +-
 .../TamayaPropertySourceProvider.java   |   4 +-
 .../MicroprofileConfigBuilderTest.java  | 101 +++
 .../MicroprofileConfigProviderResolverTest.java |  75 ++
 .../MPSystemPropertiesConfigSource.java |  34 +++
 ...eclipse.microprofile.config.spi.ConfigSource |  19 
 13 files changed, 249 insertions(+), 17 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/blob/5ee4802c/microprofile/src/main/java/org/apache/tamaya/microprofile/MicroprofileConfig.java
--
diff --git 
a/microprofile/src/main/java/org/apache/tamaya/microprofile/MicroprofileConfig.java
 
b/microprofile/src/main/java/org/apache/tamaya/microprofile/MicroprofileConfig.java
index fa8d7b0..3dc4b34 100644
--- 
a/microprofile/src/main/java/org/apache/tamaya/microprofile/MicroprofileConfig.java
+++ 
b/microprofile/src/main/java/org/apache/tamaya/microprofile/MicroprofileConfig.java
@@ -29,11 +29,11 @@ import java.util.*;
 /**
  * Microprofile {@link ConfigSource} implementation that wraps a {@link 
PropertySource} instance.
  */
-final class MicroprofileConfig implements Config {
+public class MicroprofileConfig implements Config {
 
 private Configuration delegate;
 
-MicroprofileConfig(Configuration delegate){
+public MicroprofileConfig(Configuration delegate){
 this.delegate = Objects.requireNonNull(delegate);
 }
 

http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/blob/5ee4802c/microprofile/src/main/java/org/apache/tamaya/microprofile/MicroprofileConfigProviderResolver.java
--
diff --git 
a/microprofile/src/main/java/org/apache/tamaya/microprofile/MicroprofileConfigProviderResolver.java
 
b/microprofile/src/main/java/org/apache/tamaya/microprofile/MicroprofileConfigProviderResolver.java
index f1d336e..c35bd35 100644
--- 
a/microprofile/src/main/java/org/apache/tamaya/microprofile/MicroprofileConfigProviderResolver.java
+++ 
b/microprofile/src/main/java/org/apache/tamaya/microprofile/MicroprofileConfigProviderResolver.java
@@ -25,6 +25,7 @@ import 
org.eclipse.microprofile.config.spi.ConfigProviderResolver;
 
 import java.util.Map;
 import java.util.concurrent.ConcurrentHashMap;
+import java.util.logging.Logger;
 
 /**
  * Created by atsticks on 23.03.17.
@@ -56,7 +57,9 @@ public class MicroprofileConfigProviderResolver extends 
ConfigProviderResolver {
 @Override
 public void registerConfig(Config config, ClassLoader classLoader) {
 if(configs.containsKey(classLoader)){
-throw new IllegalArgumentException("Alreadsy a config registered 
with classloader: " + classLoader);
+Logger.getLogger(getClass().getName())
+.warning("Replacing existing config for classloader: " + 
classLoader);
+//throw new IllegalArgumentException("Already a config registered 
with classloader: " + classLoader);
 }
 this.configs.put(classLoader, config);
 }

http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/blob/5ee4802c/microprofile/src/main/java/org/apache/tamaya/microprofile/MicroprofileConfigSource.java
--
diff --git 
a/microprofile/src/main/java/org/apache/tamaya/microprofile/MicroprofileConfigSource.java
 
b/microprofile/src/main/java/org/apache/tamaya/microprofile/MicroprofileConfigSource.java
index fbb02b4..39ca119 100644
--- 
a/microprofile/src/main/java/org/apache/tamaya/microprofile/MicroprofileConfigSource.java
+++ 

Build failed in Jenkins: Tamaya-Sandbox-Master #512

2017-03-30 Thread Apache Jenkins Server
See 

--
Started by an SCM change
[EnvInject] - Loading node environment variables.
[EnvInject] - Preparing an environment for the build.
[EnvInject] - Keeping Jenkins system variables.
[EnvInject] - Keeping Jenkins build variables.
[EnvInject] - Injecting contributions.
Building remotely on ubuntu-2 (ubuntu) in workspace 

FATAL: java.io.IOException: Remote call on ubuntu-2 failed
hudson.remoting.RemotingSystemException: java.io.IOException: Remote call on 
ubuntu-2 failed
at 
hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:272)
at com.sun.proxy.$Proxy96.hasGitRepo(Unknown Source)
at 
org.jenkinsci.plugins.gitclient.RemoteGitImpl.hasGitRepo(RemoteGitImpl.java:280)
at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1046)
at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1101)
at hudson.scm.SCM.checkout(SCM.java:495)
at hudson.model.AbstractProject.checkout(AbstractProject.java:1278)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:604)
at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:529)
at hudson.model.Run.execute(Run.java:1728)
at hudson.maven.MavenModuleSetBuild.run(MavenModuleSetBuild.java:544)
at hudson.model.ResourceController.execute(ResourceController.java:98)
at hudson.model.Executor.run(Executor.java:404)
Caused by: java.io.IOException: Remote call on ubuntu-2 failed
at hudson.remoting.Channel.call(Channel.java:830)
at 
hudson.remoting.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:256)
... 13 more
Caused by: java.lang.OutOfMemoryError: Java heap space


Jenkins build is still unstable: Tamaya-Sandbox-Master #511

2017-03-30 Thread Apache Jenkins Server
See 



Jenkins build is still unstable: Tamaya-Sandbox-Master » Apache Tamaya :: OSGi Integration :: ConfigAdmin #511

2017-03-30 Thread Apache Jenkins Server
See 




Jenkins build is back to normal : Tamaya-Site-jBake-Master #169

2017-03-30 Thread Apache Jenkins Server
See