[2/4] incubator-tamaya-extensions git commit: [TAMAYA-244] Wrote tests for FilteredPropertySource.

2017-03-21 Thread plexus
[TAMAYA-244] Wrote tests for FilteredPropertySource.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/commit/8551df16
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/tree/8551df16
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/diff/8551df16

Branch: refs/heads/master
Commit: 8551df163f42692d65273444c0b575d7d19b60b1
Parents: 6cc0d65
Author: Oliver B. Fischer 
Authored: Tue Mar 21 06:38:23 2017 +0100
Committer: Oliver B. Fischer 
Committed: Tue Mar 21 11:24:47 2017 +0100

--
 .../functions/FilteredPropertySource.java   |  14 +-
 .../functions/FilteredPropertySourceTest.java   | 213 +++
 .../functions/InMemoryPropertySource.java   |  83 
 3 files changed, 305 insertions(+), 5 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/8551df16/modules/functions/src/main/java/org/apache/tamaya/functions/FilteredPropertySource.java
--
diff --git 
a/modules/functions/src/main/java/org/apache/tamaya/functions/FilteredPropertySource.java
 
b/modules/functions/src/main/java/org/apache/tamaya/functions/FilteredPropertySource.java
index 10736aa..133862d 100644
--- 
a/modules/functions/src/main/java/org/apache/tamaya/functions/FilteredPropertySource.java
+++ 
b/modules/functions/src/main/java/org/apache/tamaya/functions/FilteredPropertySource.java
@@ -46,7 +46,7 @@ class FilteredPropertySource implements PropertySource {
 
 @Override
 public int getOrdinal(){
-return PropertySourceComparator.getOrdinal(baseSource);
+return PropertySourceComparator.getOrdinal(getBaseSource());
 }
 
 @Override
@@ -56,7 +56,7 @@ class FilteredPropertySource implements PropertySource {
 
 @Override
 public PropertyValue get(String key) {
-PropertyValue val = this.baseSource.get(key);
+PropertyValue val = this.getBaseSource().get(key);
 if(val!=null && filter.test(val.getKey())) {
 return val;
 }
@@ -66,7 +66,7 @@ class FilteredPropertySource implements PropertySource {
 @Override
 public Map getProperties(){
 final Map result = new HashMap<>();
-for(PropertyValue val: this.baseSource.getProperties().values()) {
+for(PropertyValue val: this.getBaseSource().getProperties().values()) {
 if (filter.test(val.getKey())) {
 result.put(val.getKey(), val);
 }
@@ -76,14 +76,18 @@ class FilteredPropertySource implements PropertySource {
 
 @Override
 public boolean isScannable() {
-return baseSource.isScannable();
+return getBaseSource().isScannable();
 }
 
 @Override
 public String toString() {
 return "FilteredPropertySource{" +
-"baseSource=" + baseSource +
+"baseSource=" + getBaseSource() +
 ", filter=" + filter +
 '}';
 }
+
+protected PropertySource getBaseSource() {
+return baseSource;
+}
 }

http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/8551df16/modules/functions/src/test/java/org/apache/tamaya/functions/FilteredPropertySourceTest.java
--
diff --git 
a/modules/functions/src/test/java/org/apache/tamaya/functions/FilteredPropertySourceTest.java
 
b/modules/functions/src/test/java/org/apache/tamaya/functions/FilteredPropertySourceTest.java
new file mode 100644
index 000..677711d
--- /dev/null
+++ 
b/modules/functions/src/test/java/org/apache/tamaya/functions/FilteredPropertySourceTest.java
@@ -0,0 +1,213 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.tamaya.functions;
+
+import org.apache.tamaya.spi.PropertySource;
+import org.apache.tamaya.spi.PropertyValue;
+import org.junit.Test;
+
+import static 
org.apache.tamaya.functions.MethodNotMockedAnswer.NOT_MOCKED_ANS

[3/4] incubator-tamaya-extensions git commit: [TAMAYA-258] Changed the commandline to run PIT.

2017-03-21 Thread plexus
[TAMAYA-258] Changed the commandline to run PIT.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/commit/6cc0d655
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/tree/6cc0d655
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/diff/6cc0d655

Branch: refs/heads/master
Commit: 6cc0d655891ad50d611ba35f99a4c1af12fd764f
Parents: f38853f
Author: Oliver B. Fischer 
Authored: Mon Mar 20 18:38:24 2017 +0100
Committer: Oliver B. Fischer 
Committed: Tue Mar 21 11:24:47 2017 +0100

--
 running-mutation-tests.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/6cc0d655/running-mutation-tests.adoc
--
diff --git a/running-mutation-tests.adoc b/running-mutation-tests.adoc
index 37f3ba6..eba88b3 100644
--- a/running-mutation-tests.adoc
+++ b/running-mutation-tests.adoc
@@ -12,7 +12,7 @@ be executed manually by executing the following command.
 
 [source]
 
-> mvn org.pitest:pitest-maven:mutationCoverage
+> mvn install org.pitest:pitest-maven:mutationCoverage
 
 
 



[4/4] incubator-tamaya-extensions git commit: [TAMAYA-244] Wrote tests for EnrichedPropertySource.

2017-03-21 Thread plexus
[TAMAYA-244] Wrote tests for EnrichedPropertySource.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/commit/2f124694
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/tree/2f124694
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/diff/2f124694

Branch: refs/heads/master
Commit: 2f124694a58fbe65652f90c44ded8f68b9518f70
Parents: 19553ad
Author: Oliver B. Fischer 
Authored: Tue Mar 21 23:09:35 2017 +0100
Committer: Oliver B. Fischer 
Committed: Tue Mar 21 23:09:35 2017 +0100

--
 .../functions/EnrichedPropertySourceTest.java   | 250 +++
 .../functions/FilteredPropertySourceTest.java   |   1 +
 .../functions/InMemoryPropertySource.java   |   4 +-
 3 files changed, 254 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/2f124694/modules/functions/src/test/java/org/apache/tamaya/functions/EnrichedPropertySourceTest.java
--
diff --git 
a/modules/functions/src/test/java/org/apache/tamaya/functions/EnrichedPropertySourceTest.java
 
b/modules/functions/src/test/java/org/apache/tamaya/functions/EnrichedPropertySourceTest.java
new file mode 100644
index 000..563a986
--- /dev/null
+++ 
b/modules/functions/src/test/java/org/apache/tamaya/functions/EnrichedPropertySourceTest.java
@@ -0,0 +1,250 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.tamaya.functions;
+
+import org.apache.tamaya.spi.PropertySource;
+import org.apache.tamaya.spi.PropertyValue;
+import org.junit.Test;
+
+import javax.management.RuntimeMBeanException;
+import java.util.Collections;
+import java.util.HashMap;
+import java.util.Map;
+
+import static java.util.Collections.EMPTY_MAP;
+import static 
org.apache.tamaya.functions.MethodNotMockedAnswer.NOT_MOCKED_ANSWER;
+import static org.apache.tamaya.spi.PropertyValue.of;
+import static org.assertj.core.api.Assertions.assertThat;
+import static org.mockito.Mockito.doReturn;
+import static org.mockito.Mockito.mock;
+
+public class EnrichedPropertySourceTest {
+
+/*
+ * Tests for getName()
+ */
+
+@Test
+public void getNameReturnsTheNameOfTheBaseConfiguration() {
+PropertySource propertySource = mock(PropertySource.class, 
NOT_MOCKED_ANSWER);
+doReturn("abc").when(propertySource).getName();
+
+EnrichedPropertySource sut = new 
EnrichedPropertySource(propertySource, EMPTY_MAP, false);
+
+String name = sut.getName();
+
+assertThat(name).isEqualTo("abc");
+}
+
+
+/*
+ * Tests for getOrdinal()
+ */
+
+@Test
+public void getOrdinalReturnsTheValueOfTheBaseConfiguration() {
+PropertySource propertySource = mock(PropertySource.class, 
NOT_MOCKED_ANSWER);
+doReturn(13).when(propertySource).getOrdinal();
+
+EnrichedPropertySource sut = new 
EnrichedPropertySource(propertySource, EMPTY_MAP, false);
+
+int ordinal = sut.getOrdinal();
+
+assertThat(ordinal).isEqualTo(13);
+}
+
+/*
+ * Tests for EnrichedPropertySource(PropertySource, Map, 
boolean)
+ */
+
+/*
+ * Tests for get(String)
+ */
+
+@Test
+public void getReturnsAdditional() {
+InMemoryPropertySource base = new InMemoryPropertySource();
+
+base.setName("name").add("a", "1").add("b", "2").add("c", 
"3").add("d", "4");
+
+Map additions = new HashMap<>();
+additions.put("e", "9");
+additions.put("f", "11");
+
+EnrichedPropertySource sut = new EnrichedPropertySource(base, 
additions, false);
+
+PropertyValue result = sut.get("e");
+
+assertThat(result).isNotNull().isNotNull().isEqualTo(of("e", "9", 
"name"));
+}
+
+@Test
+public void getReturnsOverriddenValue() {
+InMemoryPropertySource base = new InMemoryPropertySource();
+
+base.setName("name").add("a", "1").add("b", "2").add("c", 
"3").add("d", "

Jenkins build is back to stable : Tamaya-Extensions-Master #540

2017-03-21 Thread Apache Jenkins Server
See 




[1/4] incubator-tamaya-extensions git commit: [TAMAYA-258] PIT should not generated mutations for toString methods.

2017-03-21 Thread plexus
Repository: incubator-tamaya-extensions
Updated Branches:
  refs/heads/master f38853f20 -> 2f124694a


[TAMAYA-258] PIT should not generated mutations for toString methods.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/commit/19553ad4
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/tree/19553ad4
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/diff/19553ad4

Branch: refs/heads/master
Commit: 19553ad413bcddc9b928e7362a1d1d90817c2820
Parents: 8551df1
Author: Oliver B. Fischer 
Authored: Tue Mar 21 06:57:47 2017 +0100
Committer: Oliver B. Fischer 
Committed: Tue Mar 21 11:24:47 2017 +0100

--
 pom.xml | 3 +++
 1 file changed, 3 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/19553ad4/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 8066dfa..897b5e1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -526,6 +526,9 @@ under the License.
 
 org.apache.tamaya.*
 
+
+toString
+
 
 
 



incubator-tamaya-extensions git commit: [TAMAYA-244] Fixed a bug in EnrichedConfiguration.

2017-03-21 Thread plexus
Repository: incubator-tamaya-extensions
Updated Branches:
  refs/heads/master 2f124694a -> 0f772ca02


[TAMAYA-244] Fixed a bug in EnrichedConfiguration.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/commit/0f772ca0
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/tree/0f772ca0
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/diff/0f772ca0

Branch: refs/heads/master
Commit: 0f772ca02c6566081df0681f17fdc09a799acebe
Parents: 2f12469
Author: Oliver B. Fischer 
Authored: Tue Mar 21 23:35:39 2017 +0100
Committer: Oliver B. Fischer 
Committed: Tue Mar 21 23:35:39 2017 +0100

--
 .../java/org/apache/tamaya/functions/EnrichedConfiguration.java| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/0f772ca0/modules/functions/src/main/java/org/apache/tamaya/functions/EnrichedConfiguration.java
--
diff --git 
a/modules/functions/src/main/java/org/apache/tamaya/functions/EnrichedConfiguration.java
 
b/modules/functions/src/main/java/org/apache/tamaya/functions/EnrichedConfiguration.java
index 7969563..7ace497 100644
--- 
a/modules/functions/src/main/java/org/apache/tamaya/functions/EnrichedConfiguration.java
+++ 
b/modules/functions/src/main/java/org/apache/tamaya/functions/EnrichedConfiguration.java
@@ -48,7 +48,7 @@ class EnrichedConfiguration implements Configuration {
  */
 EnrichedConfiguration(Configuration configuration, Map 
properties, boolean overriding) {
 this.baseConfiguration = Objects.requireNonNull(configuration);
-this.addedProperties.putAll(addedProperties);
+this.addedProperties.putAll(properties);
 this.overriding = overriding;
 }
 



Jenkins build became unstable: Tamaya-Extensions-Master #541

2017-03-21 Thread Apache Jenkins Server
See 




incubator-tamaya git commit: Added tests fir with and query, reenabled methods.

2017-03-21 Thread anatole
Repository: incubator-tamaya
Updated Branches:
  refs/heads/master 4d5f5187c -> 32661ef7a


Added tests fir with and query, reenabled methods.


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

Branch: refs/heads/master
Commit: 32661ef7ac89b9908a471043cc6fc47a748bffef
Parents: 4d5f518
Author: anatole 
Authored: Wed Mar 22 00:16:50 2017 +0100
Committer: anatole 
Committed: Wed Mar 22 00:17:40 2017 +0100

--
 .../core/internal/DefaultConfiguration.java |  2 -
 .../propertysource/SystemPropertySource.java|  4 +-
 .../core/internal/DefaultConfigurationTest.java | 41 
 3 files changed, 43 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/32661ef7/code/core/src/main/java/org/apache/tamaya/core/internal/DefaultConfiguration.java
--
diff --git 
a/code/core/src/main/java/org/apache/tamaya/core/internal/DefaultConfiguration.java
 
b/code/core/src/main/java/org/apache/tamaya/core/internal/DefaultConfiguration.java
index 48cd555..54cd186 100644
--- 
a/code/core/src/main/java/org/apache/tamaya/core/internal/DefaultConfiguration.java
+++ 
b/code/core/src/main/java/org/apache/tamaya/core/internal/DefaultConfiguration.java
@@ -219,13 +219,11 @@ public class DefaultConfiguration implements 
Configuration {
 
 @Override
 public Configuration with(ConfigOperator operator) {
-// todo obf if (1==1) throw new RuntimeException("No tests written.");
 return operator.operate(this);
 }
 
 @Override
 public  T query(ConfigQuery query) {
-// todo obf if (1==1) throw new RuntimeException("No tests written.");
 return query.query(this);
 }
 

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/32661ef7/code/core/src/main/java/org/apache/tamaya/core/propertysource/SystemPropertySource.java
--
diff --git 
a/code/core/src/main/java/org/apache/tamaya/core/propertysource/SystemPropertySource.java
 
b/code/core/src/main/java/org/apache/tamaya/core/propertysource/SystemPropertySource.java
index 4dca29d..7759827 100644
--- 
a/code/core/src/main/java/org/apache/tamaya/core/propertysource/SystemPropertySource.java
+++ 
b/code/core/src/main/java/org/apache/tamaya/core/propertysource/SystemPropertySource.java
@@ -138,9 +138,9 @@ public class SystemPropertySource extends 
BasePropertySource {
 Map values = new HashMap<>();
 for (Map.Entry entry : sysProps.entrySet()) {
 if(prefix==null) {
-values.put((String) entry.getKey(), PropertyValue.of((String) 
entry.getKey(), (String)entry.getValue(), getName()));
+values.put(entry.getKey().toString(), 
PropertyValue.of(entry.getKey().toString(), entry.getValue().toString(), 
getName()));
 }else {
-values.put(prefix + entry.getKey(), PropertyValue.of(prefix + 
entry.getKey(), (String)entry.getValue(), getName()));
+values.put(prefix + entry.getKey(), PropertyValue.of(prefix + 
entry.getKey(), entry.getValue().toString(), getName()));
 }
 }
 return values;

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/32661ef7/code/core/src/test/java/org/apache/tamaya/core/internal/DefaultConfigurationTest.java
--
diff --git 
a/code/core/src/test/java/org/apache/tamaya/core/internal/DefaultConfigurationTest.java
 
b/code/core/src/test/java/org/apache/tamaya/core/internal/DefaultConfigurationTest.java
index 541689f..c12d157 100644
--- 
a/code/core/src/test/java/org/apache/tamaya/core/internal/DefaultConfigurationTest.java
+++ 
b/code/core/src/test/java/org/apache/tamaya/core/internal/DefaultConfigurationTest.java
@@ -18,6 +18,9 @@
  */
 package org.apache.tamaya.core.internal;
 
+import org.apache.tamaya.ConfigOperator;
+import org.apache.tamaya.ConfigQuery;
+import org.apache.tamaya.Configuration;
 import org.apache.tamaya.TypeLiteral;
 import org.apache.tamaya.spi.*;
 import org.junit.Test;
@@ -26,6 +29,8 @@ import org.mockito.internal.matchers.Null;
 import java.util.List;
 import java.util.Map;
 
+import static org.junit.Assert.assertEquals;
+
 public class DefaultConfigurationTest {
 
 /*
@@ -129,6 +134,42 @@ public class DefaultConfigurationTest {
 c.getOrDefault("a", null);
 }
 
+@Test(expected = NullPointerException.class)
+public void with_Null() {
+DefaultConfiguration c = new DefaultConfiguration(new 
DummyConfiguration

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

2017-03-21 Thread Apache Jenkins Server
See 




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

2017-03-21 Thread Apache Jenkins Server
See 



Jenkins build is still unstable: Tamaya-Extensions-Master #542

2017-03-21 Thread Apache Jenkins Server
See 




incubator-tamaya git commit: Added test for createConfiguration, removed markers.

2017-03-21 Thread anatole
Repository: incubator-tamaya
Updated Branches:
  refs/heads/master 32661ef7a -> ca19d2d42


Added test for createConfiguration, removed markers.


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

Branch: refs/heads/master
Commit: ca19d2d42e4eccfef8cb1b04a53d1c6061636bad
Parents: 32661ef
Author: anatole 
Authored: Wed Mar 22 00:38:47 2017 +0100
Committer: anatole 
Committed: Wed Mar 22 00:38:47 2017 +0100

--
 .../core/internal/DefaultConfigurationProviderTest.java | 9 +
 1 file changed, 9 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/ca19d2d4/code/core/src/test/java/org/apache/tamaya/core/internal/DefaultConfigurationProviderTest.java
--
diff --git 
a/code/core/src/test/java/org/apache/tamaya/core/internal/DefaultConfigurationProviderTest.java
 
b/code/core/src/test/java/org/apache/tamaya/core/internal/DefaultConfigurationProviderTest.java
index b5fb80c..2f45896 100644
--- 
a/code/core/src/test/java/org/apache/tamaya/core/internal/DefaultConfigurationProviderTest.java
+++ 
b/code/core/src/test/java/org/apache/tamaya/core/internal/DefaultConfigurationProviderTest.java
@@ -18,6 +18,7 @@
  */
 package org.apache.tamaya.core.internal;
 
+import org.apache.tamaya.spi.ConfigurationContext;
 import org.junit.Test;
 
 import static org.junit.Assert.*;
@@ -38,6 +39,14 @@ public class DefaultConfigurationProviderTest {
 }
 
 @Test
+public void createConfiguration() throws Exception {
+ConfigurationContext ctx = new 
DefaultConfigurationContextBuilder().build();
+assertNotNull(new 
DefaultConfigurationProvider().createConfiguration(ctx));
+assertEquals(ctx,
+new 
DefaultConfigurationProvider().createConfiguration(ctx).getContext());
+}
+
+@Test
 public void getConfigurationContext() throws Exception {
 assertNotNull(new 
DefaultConfigurationProvider().getConfigurationContext());
 }



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

2017-03-21 Thread Apache Jenkins Server
See 



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

2017-03-21 Thread Apache Jenkins Server
See 




Jenkins build is still unstable: Tamaya-Extensions-Master #543

2017-03-21 Thread Apache Jenkins Server
See 




Jenkins build is back to stable : Tamaya-Extensions-Master #544

2017-03-21 Thread Apache Jenkins Server
See 




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

2017-03-21 Thread Apache Jenkins Server
See 



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

2017-03-21 Thread Apache Jenkins Server
See