incubator-tamaya-sandbox git commit: TAMAYA-274: Fixed basic service loading in OSGI. Added missing requirements.

2017-09-16 Thread anatole
Repository: incubator-tamaya-sandbox
Updated Branches:
  refs/heads/java8 5925c34d9 -> c345b5c2c


TAMAYA-274: Fixed basic service loading in OSGI. Added missing requirements.


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/c345b5c2
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/tree/c345b5c2
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/diff/c345b5c2

Branch: refs/heads/java8
Commit: c345b5c2c0c8541c13930585392c7e7c59be012f
Parents: 5925c34
Author: anatole 
Authored: Sun Sep 17 01:51:20 2017 +0200
Committer: anatole 
Committed: Sun Sep 17 01:51:20 2017 +0200

--
 consul/bnd.bnd | 4 +++-
 etcd/bnd.bnd   | 4 +++-
 2 files changed, 6 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/blob/c345b5c2/consul/bnd.bnd
--
diff --git a/consul/bnd.bnd b/consul/bnd.bnd
index 8c328f7..bb6123a 100644
--- a/consul/bnd.bnd
+++ b/consul/bnd.bnd
@@ -23,7 +23,9 @@ Export-Package: \
org.apache.tamaya.consul
 Import-Package: \
 org.apache.tamaya,\
-org.apache.tamaya.spi
+org.apache.tamaya.spi,\
+org.apache.tamaya.mutableconfig,\
+org.apache.tamaya.mutableconfig.spi
 Export-Service: \
 org.apache.tamaya.spi.PropertySource
 
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/blob/c345b5c2/etcd/bnd.bnd
--
diff --git a/etcd/bnd.bnd b/etcd/bnd.bnd
index 792c69c..027e033 100644
--- a/etcd/bnd.bnd
+++ b/etcd/bnd.bnd
@@ -23,7 +23,9 @@ Export-Package: \
org.apache.tamaya.etcd
 Import-Package: \
 org.apache.tamaya,\
-org.apache.tamaya.spi
+org.apache.tamaya.spi,\
+org.apache.tamaya.mutableconfig\
+org.apache.tamaya.mutableconfig.spi
 Export-Service: \
 org.apache.tamaya.spi.PropertySource
 
\ No newline at end of file



incubator-tamaya git commit: TAMAYA-274: Fixed basic service loading in OSGI. Added missing requirements.

2017-09-16 Thread anatole
Repository: incubator-tamaya
Updated Branches:
  refs/heads/java8 23123bb72 -> 6010c606c


TAMAYA-274: Fixed basic service loading in OSGI. Added missing requirements.


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

Branch: refs/heads/java8
Commit: 6010c606cdccd0121c064b7ba6a32a7ed71c9ab5
Parents: 23123bb
Author: anatole 
Authored: Sun Sep 17 01:51:20 2017 +0200
Committer: anatole 
Committed: Sun Sep 17 01:51:20 2017 +0200

--
 .../tamaya/core/internal/OSGIServiceLoader.java | 96 +---
 .../examples/minimal/TestConfigProvider.java| 49 ++
 2 files changed, 110 insertions(+), 35 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/6010c606/code/core/src/main/java/org/apache/tamaya/core/internal/OSGIServiceLoader.java
--
diff --git 
a/code/core/src/main/java/org/apache/tamaya/core/internal/OSGIServiceLoader.java
 
b/code/core/src/main/java/org/apache/tamaya/core/internal/OSGIServiceLoader.java
index 4c12df9..0854b0d 100644
--- 
a/code/core/src/main/java/org/apache/tamaya/core/internal/OSGIServiceLoader.java
+++ 
b/code/core/src/main/java/org/apache/tamaya/core/internal/OSGIServiceLoader.java
@@ -48,6 +48,13 @@ public class OSGIServiceLoader implements BundleListener {
 
 public OSGIServiceLoader(BundleContext context){
 this.context = Objects.requireNonNull(context);
+// Check for matching bundles already installed...
+for(Bundle bundle:context.getBundles()){
+switch(bundle.getState()){
+case Bundle.ACTIVE:
+checkAndLoadBundle(bundle);
+}
+}
 }
 
 public BundleContext getBundleContext(){
@@ -62,38 +69,46 @@ public class OSGIServiceLoader implements BundleListener {
 
 @Override
 public void bundleChanged(BundleEvent bundleEvent) {
-// Parse and create metadata on STARTING
-if (bundleEvent.getType() == BundleEvent.STARTING) {
+// Parse and create metadata when installed
+if (bundleEvent.getType() == BundleEvent.STARTED) {
 Bundle bundle = bundleEvent.getBundle();
-if (bundle.getEntry(META_INF_SERVICES) == null) {
-return;
-}
-synchronized (resourceBundles){
-resourceBundles.add(bundle);
-log.info("Registered ServiceLoader bundle: " + 
bundle.getSymbolicName());
-}
-Enumeration entryPaths = 
bundle.getEntryPaths("META-INF/services/");
-while (entryPaths.hasMoreElements()) {
-String entryPath = entryPaths.nextElement();
-if(!entryPath.endsWith("/")) {
-processEntryPath(bundle, entryPath);
-}
-}
-} else if (bundleEvent.getType() == BundleEvent.STOPPING) {
+checkAndLoadBundle(bundle);
+} else if (bundleEvent.getType() == BundleEvent.STOPPED) {
 Bundle bundle = bundleEvent.getBundle();
-if (bundle.getEntry(META_INF_SERVICES) == null) {
-return;
-}
-synchronized (resourceBundles) {
-resourceBundles.remove(bundle);
-log.finest("Unregistered ServiceLoader bundle: " + 
bundle.getSymbolicName());
+checkAndUnloadBundle(bundle);
+}
+}
+
+private void checkAndUnloadBundle(Bundle bundle) {
+if (bundle.getEntry(META_INF_SERVICES) == null) {
+return;
+}
+synchronized (resourceBundles) {
+resourceBundles.remove(bundle);
+log.fine("Unregistered ServiceLoader bundle: " + 
bundle.getSymbolicName());
+}
+Enumeration entryPaths = 
bundle.getEntryPaths("META-INF/services/");
+while (entryPaths.hasMoreElements()) {
+String entryPath = entryPaths.nextElement();
+if(!entryPath.endsWith("/")) {
+removeEntryPath(bundle, entryPath);
 }
-Enumeration entryPaths = 
bundle.getEntryPaths("META-INF/services/");
-while (entryPaths.hasMoreElements()) {
-String entryPath = entryPaths.nextElement();
-if(!entryPath.endsWith("/")) {
-removeEntryPath(bundle, entryPath);
-}
+}
+}
+
+private void checkAndLoadBundle(Bundle bundle) {
+if (bundle.getEntry(META_INF_SERVICES) == null) {
+return;
+}
+synchronized (resourceBundles){
+  

incubator-tamaya-sandbox git commit: TAMAYA-287: Fix maven warning and update to latest Tamaya SNAPSHOT

2017-09-16 Thread pottlinger
Repository: incubator-tamaya-sandbox
Updated Branches:
  refs/heads/master 5c5465349 -> c66f02a81


TAMAYA-287: Fix maven warning and update to latest Tamaya SNAPSHOT


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/c66f02a8
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/tree/c66f02a8
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/diff/c66f02a8

Branch: refs/heads/master
Commit: c66f02a81c08aeb5448aee7f382d9b31a9f1dfb3
Parents: 5c54653
Author: Phil Ottlinger 
Authored: Sat Sep 16 22:56:20 2017 +0200
Committer: Phil Ottlinger 
Committed: Sat Sep 16 22:56:20 2017 +0200

--
 pom.xml | 6 +-
 1 file changed, 1 insertion(+), 5 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/blob/c66f02a8/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 228bc2b..b6909f8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -39,12 +39,8 @@ under the License.
 https://apache.org
 
 
-
-3.0.5
-
-
 
-3.0-incubating-SNAPSHOT
+4.0-incubating-SNAPSHOT
 2.5
 false
 1.7



incubator-tamaya-extensions git commit: TAMAYA-287: Fix maven warning

2017-09-16 Thread pottlinger
Repository: incubator-tamaya-extensions
Updated Branches:
  refs/heads/master 1d1fc1ed5 -> 2fb3c9f7e


TAMAYA-287: Fix maven warning


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/2fb3c9f7
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/tree/2fb3c9f7
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/diff/2fb3c9f7

Branch: refs/heads/master
Commit: 2fb3c9f7ea5918121d0a7621395cb0a299960d78
Parents: 1d1fc1e
Author: Phil Ottlinger 
Authored: Sat Sep 16 22:54:31 2017 +0200
Committer: Phil Ottlinger 
Committed: Sat Sep 16 22:54:31 2017 +0200

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


http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/2fb3c9f7/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 44c24d2..b561990 100644
--- a/pom.xml
+++ b/pom.xml
@@ -43,10 +43,6 @@ under the License.
 https://apache.org
 
 
-
-3.0.5
-
-
 
 
 
0.4-incubating-SNAPSHOT



incubator-tamaya-extensions git commit: TAMAYA-295: Update jacoco.

2017-09-16 Thread pottlinger
Repository: incubator-tamaya-extensions
Updated Branches:
  refs/heads/master 38f92d7bb -> 1d1fc1ed5


TAMAYA-295: Update jacoco.


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/1d1fc1ed
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/tree/1d1fc1ed
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/diff/1d1fc1ed

Branch: refs/heads/master
Commit: 1d1fc1ed5bff6813f8a11b3a18e1d3d211af3cf5
Parents: 38f92d7
Author: Phil Ottlinger 
Authored: Sat Sep 16 22:53:57 2017 +0200
Committer: Phil Ottlinger 
Committed: Sat Sep 16 22:53:57 2017 +0200

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


http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/1d1fc1ed/pom.xml
--
diff --git a/pom.xml b/pom.xml
index f545f2d..44c24d2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -363,7 +363,7 @@ under the License.
 
 org.jacoco
 jacoco-maven-plugin
-0.7.7.201606060606
+0.7.9
 
 
 de.saumya.mojo



incubator-tamaya git commit: TAMAYA-287: Fix maven warning

2017-09-16 Thread pottlinger
Repository: incubator-tamaya
Updated Branches:
  refs/heads/master 79f5240b8 -> 492da9da5


TAMAYA-287: Fix maven warning

Current enforcer configuration already requires a minimum maven version of 
3.0.5.


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

Branch: refs/heads/master
Commit: 492da9da55101edec3273bff42edb05a5f8d2b68
Parents: 79f5240
Author: Phil Ottlinger 
Authored: Sat Sep 16 22:40:43 2017 +0200
Committer: Phil Ottlinger 
Committed: Sat Sep 16 22:40:43 2017 +0200

--
 pom.xml | 30 +-
 1 file changed, 13 insertions(+), 17 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/492da9da/pom.xml
--
diff --git a/pom.xml b/pom.xml
index d33887e..791e8dd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,12 +1,12 @@
-
 http://maven.apache.org/POM/4.0.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;
 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd;>
@@ -32,10 +32,6 @@
 https://apache.org
 
 
-
-3.0.5
-
-
 
 2.5
 false
@@ -509,7 +505,7 @@
 
 org.apache.maven.plugins
 maven-site-plugin
-
 3.4
 true
@@ -586,9 +582,9 @@
 
 
 
-
 
${project.basedir}/temp-properties-files-for-site
 



incubator-tamaya git commit: [TAMAYA-289] The tests of BannerManagerTest cause PIT to fail. Therefore I excluded this class from the coverage check.

2017-09-16 Thread plexus
Repository: incubator-tamaya
Updated Branches:
  refs/heads/master 32be37e25 -> 79f5240b8


[TAMAYA-289] The tests of BannerManagerTest cause PIT to fail. Therefore I 
excluded this class from the coverage check.


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

Branch: refs/heads/master
Commit: 79f5240b8fc948e868439ac0b8d92cb7976d04b2
Parents: 32be37e
Author: Oliver B. Fischer 
Authored: Sat Sep 16 15:50:12 2017 +0200
Committer: Oliver B. Fischer 
Committed: Sat Sep 16 15:50:12 2017 +0200

--
 .../org/apache/tamaya/core/internal/BannerManagerTest.java| 7 +++
 pom.xml   | 3 +++
 2 files changed, 10 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/79f5240b/code/core/src/test/java/org/apache/tamaya/core/internal/BannerManagerTest.java
--
diff --git 
a/code/core/src/test/java/org/apache/tamaya/core/internal/BannerManagerTest.java
 
b/code/core/src/test/java/org/apache/tamaya/core/internal/BannerManagerTest.java
index a7d6557..9d2156b 100644
--- 
a/code/core/src/test/java/org/apache/tamaya/core/internal/BannerManagerTest.java
+++ 
b/code/core/src/test/java/org/apache/tamaya/core/internal/BannerManagerTest.java
@@ -27,6 +27,13 @@ import java.security.AccessControlContext;
 import java.security.AccessController;
 import java.security.Permission;
 
+/*
+ * Note:
+ * The tests of this class will fail PIT, our coverage tool.
+ * Therefore we excluded this class in the parent POM
+ * from the test execution.
+ * Oliver B. Fischer, 2017-09-16
+ */
 public class BannerManagerTest {
 
 @Test

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/79f5240b/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 05de4bb..d33887e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -307,6 +307,9 @@
 
 org.apache.tamaya.*
 
+
+
org.apache.tamaya.core.internal.BannerManagerTest
+
  
  toString
 



[2/2] incubator-tamaya git commit: .

2017-09-16 Thread plexus
.


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

Branch: refs/heads/tamaya-289
Commit: 966900e724d4a443fdfe90cbfec9049ee3c09db2
Parents: 7e63b95
Author: Oliver B. Fischer 
Authored: Sat Sep 16 15:35:30 2017 +0200
Committer: Oliver B. Fischer 
Committed: Sat Sep 16 15:35:30 2017 +0200

--
 .../org/apache/tamaya/ConfigExceptionTest.java  |  4 ++--
 .../org/apache/tamaya/ConfigurationTest.java| 10 -
 .../java/org/apache/tamaya/TypeLiteralTest.java | 18 
 .../tamaya/core/internal/BannerManagerTest.java |  2 +-
 .../DefaultConfigurationContextTest.java| 16 +++---
 .../internal/DefaultServiceContextTest.java |  6 +++---
 .../converters/DoubleConverterTest.java | 22 ++--
 .../propertysource/BasePropertySourceTest.java  |  4 ++--
 8 files changed, 41 insertions(+), 41 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/966900e7/code/api/src/test/java/org/apache/tamaya/ConfigExceptionTest.java
--
diff --git a/code/api/src/test/java/org/apache/tamaya/ConfigExceptionTest.java 
b/code/api/src/test/java/org/apache/tamaya/ConfigExceptionTest.java
index 8cb7df6..0cd344f 100644
--- a/code/api/src/test/java/org/apache/tamaya/ConfigExceptionTest.java
+++ b/code/api/src/test/java/org/apache/tamaya/ConfigExceptionTest.java
@@ -28,14 +28,14 @@ import static org.junit.Assert.*;
  */
 public class ConfigExceptionTest {
 
-@Test @Ignore
+@Test
 public void testCreationMessage(){
 ConfigException ex = new ConfigException("test");
 assertNull(ex.getCause());
 assertEquals(ex.getMessage(), "test");
 }
 
-@Test @Ignore
+@Test
 public void testCreationMessageThrowable(){
 Exception e = new IllegalStateException("blabla");
 ConfigException ex = new ConfigException("test", e);

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/966900e7/code/api/src/test/java/org/apache/tamaya/ConfigurationTest.java
--
diff --git a/code/api/src/test/java/org/apache/tamaya/ConfigurationTest.java 
b/code/api/src/test/java/org/apache/tamaya/ConfigurationTest.java
index 433ac87..d618374 100644
--- a/code/api/src/test/java/org/apache/tamaya/ConfigurationTest.java
+++ b/code/api/src/test/java/org/apache/tamaya/ConfigurationTest.java
@@ -28,7 +28,7 @@ import static org.junit.Assert.*;
  */
 public class ConfigurationTest {
 
-@Test @Ignore
+@Test
 public void testget() throws Exception {
 assertEquals(Boolean.TRUE, 
ConfigurationProvider.getConfiguration().get("booleanTrue", Boolean.class));
 assertEquals(Boolean.FALSE, 
ConfigurationProvider.getConfiguration().get("booleanFalse", Boolean.class));
@@ -39,24 +39,24 @@ public class ConfigurationTest {
 assertEquals(Double.MAX_VALUE, 
ConfigurationProvider.getConfiguration().get("double", Double.class), 0.0d);
 }
 
-@Test @Ignore
+@Test
 public void testGetBoolean() throws Exception {
 assertTrue(ConfigurationProvider.getConfiguration().get("booleanTrue", 
Boolean.class));
 
assertFalse(ConfigurationProvider.getConfiguration().get("booleanFalse", 
Boolean.class));
 assertFalse(ConfigurationProvider.getConfiguration().get("foorBar", 
Boolean.class));
 }
 
-@Test @Ignore
+@Test
 public void testGetInteger() throws Exception {
 assertEquals(Integer.MAX_VALUE,(int) 
ConfigurationProvider.getConfiguration().get("int", Integer.class));
 }
 
-@Test @Ignore
+@Test
 public void testGetLong() throws Exception {
 assertEquals(Long.MAX_VALUE,(long) 
ConfigurationProvider.getConfiguration().get("long", Long.class));
 }
 
-@Test @Ignore
+@Test
 public void testGetDouble() throws Exception {
 
assertEquals(Double.MAX_VALUE,ConfigurationProvider.getConfiguration().get("double",
 Double.class), 0.0d);
 }

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/966900e7/code/api/src/test/java/org/apache/tamaya/TypeLiteralTest.java
--
diff --git a/code/api/src/test/java/org/apache/tamaya/TypeLiteralTest.java 
b/code/api/src/test/java/org/apache/tamaya/TypeLiteralTest.java
index 90d4484..18a19cb 100644
--- a/code/api/src/test/java/org/apache/tamaya/TypeLiteralTest.java
+++ b/code/api/src/test/java/org/apache/tamaya/TypeLiteralTest.java
@@ -35,19 +35,19 @@ import static 

[1/2] incubator-tamaya git commit: Set required coverage for testing to 1%.

2017-09-16 Thread plexus
Repository: incubator-tamaya
Updated Branches:
  refs/heads/tamaya-289 5080c04e3 -> 966900e72


Set required coverage for testing to 1%.


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

Branch: refs/heads/tamaya-289
Commit: 7e63b956999b39ca7aa77b35857d53b2e51ec36f
Parents: 5080c04
Author: Oliver B. Fischer 
Authored: Sat Sep 16 15:21:56 2017 +0200
Committer: Oliver B. Fischer 
Committed: Sat Sep 16 15:21:56 2017 +0200

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


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/7e63b956/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 05de4bb..6929e67 100644
--- a/pom.xml
+++ b/pom.xml
@@ -302,7 +302,7 @@
 pitest-maven
 ${pitest-plugin.version}
 
-50
+01
 false
 
 org.apache.tamaya.*



[2/2] incubator-tamaya git commit: Disabled all tests in core.

2017-09-16 Thread plexus
Disabled all tests in core.


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

Branch: refs/heads/tamaya-289
Commit: 5080c04e3b9bcb6823b47cb59e0076a62a2b9df4
Parents: 32be37e
Author: Oliver B. Fischer 
Authored: Sat Sep 16 15:19:21 2017 +0200
Committer: Oliver B. Fischer 
Committed: Sat Sep 16 15:19:21 2017 +0200

--
 .../org/apache/tamaya/ConfigExceptionTest.java  |  5 +-
 .../org/apache/tamaya/ConfigurationTest.java| 11 ++--
 .../java/org/apache/tamaya/TypeLiteralTest.java | 19 +++---
 .../tamaya/spi/ConversionContextTest.java   | 15 ++---
 .../apache/tamaya/spi/FilterContextTest.java| 19 +++---
 .../tamaya/spi/PropertyValueBuilderTest.java| 57 +-
 .../apache/tamaya/spi/PropertyValueTest.java| 63 ++--
 .../tamaya/spi/ServiceContextManagerTest.java   |  5 +-
 .../apache/tamaya/spi/ServiceContextTest.java   | 11 ++--
 .../core/ConfigurationContextBuilderTest.java   | 47 ---
 .../apache/tamaya/core/ConfigurationTest.java   |  5 +-
 .../tamaya/core/internal/BannerManagerTest.java |  4 +-
 .../DefaultConfigurationContextBuilderTest.java | 18 +++---
 .../DefaultConfigurationContextTest.java| 24 
 .../DefaultConfigurationProviderTest.java   | 15 ++---
 .../core/internal/DefaultConfigurationTest.java | 31 +-
 .../internal/DefaultServiceContextTest.java | 15 ++---
 .../internal/PriorityServiceComparatorTest.java |  3 +-
 .../internal/PropertyConverterManagerTest.java  | 19 +++---
 .../converters/BigDecimalConverterTest.java | 11 ++--
 .../converters/BooleanConverterTest.java|  3 +-
 .../internal/converters/ByteConverterTest.java  |  7 ++-
 .../internal/converters/CharConverterTest.java  | 15 ++---
 .../internal/converters/ClassConverterTest.java | 11 ++--
 .../converters/CurrencyConverterTest.java   | 17 +++---
 .../converters/DoubleConverterTest.java | 23 +++
 .../internal/converters/EnumConverterTest.java  |  9 +--
 .../internal/converters/FloatConverterTest.java | 23 +++
 .../converters/IntegerConverterTest.java| 13 ++--
 .../internal/converters/LongConverterTest.java  | 13 ++--
 .../converters/NumberConverterTest.java | 11 ++--
 .../internal/converters/ShortConverterTest.java | 13 ++--
 .../internal/converters/URIConverterTest.java   | 11 ++--
 .../internal/converters/URLConverterTest.java   | 11 ++--
 .../propertysource/BasePropertySourceTest.java  |  5 +-
 .../propertysource/CLIPropertySourceTest.java   |  3 +-
 .../EnvironmentPropertySourceTest.java  | 11 ++--
 .../PropertiesFilePropertySourceTest.java   |  7 ++-
 .../SimplePropertySourceTest.java   |  9 +--
 .../SystemPropertySourceTest.java   |  9 +--
 .../provider/JavaConfigurationProviderTest.java |  3 +-
 .../distributed/DisplayRegistrationTest.java| 12 ++--
 42 files changed, 337 insertions(+), 299 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/5080c04e/code/api/src/test/java/org/apache/tamaya/ConfigExceptionTest.java
--
diff --git a/code/api/src/test/java/org/apache/tamaya/ConfigExceptionTest.java 
b/code/api/src/test/java/org/apache/tamaya/ConfigExceptionTest.java
index fa7da0a..8cb7df6 100644
--- a/code/api/src/test/java/org/apache/tamaya/ConfigExceptionTest.java
+++ b/code/api/src/test/java/org/apache/tamaya/ConfigExceptionTest.java
@@ -18,6 +18,7 @@
  */
 package org.apache.tamaya;
 
+import org.junit.Ignore;
 import org.junit.Test;
 
 import static org.junit.Assert.*;
@@ -27,14 +28,14 @@ import static org.junit.Assert.*;
  */
 public class ConfigExceptionTest {
 
-@Test
+@Test @Ignore
 public void testCreationMessage(){
 ConfigException ex = new ConfigException("test");
 assertNull(ex.getCause());
 assertEquals(ex.getMessage(), "test");
 }
 
-@Test
+@Test @Ignore
 public void testCreationMessageThrowable(){
 Exception e = new IllegalStateException("blabla");
 ConfigException ex = new ConfigException("test", e);

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/5080c04e/code/api/src/test/java/org/apache/tamaya/ConfigurationTest.java
--
diff --git a/code/api/src/test/java/org/apache/tamaya/ConfigurationTest.java 
b/code/api/src/test/java/org/apache/tamaya/ConfigurationTest.java
index ecbb75c..433ac87 100644
--- a/code/api/src/test/java/org/apache/tamaya/ConfigurationTest.java
+++ 

[1/2] incubator-tamaya git commit: Disabled all tests in core.

2017-09-16 Thread plexus
Repository: incubator-tamaya
Updated Branches:
  refs/heads/tamaya-289 32be37e25 -> 5080c04e3


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/5080c04e/code/core/src/test/java/org/apache/tamaya/core/internal/converters/CurrencyConverterTest.java
--
diff --git 
a/code/core/src/test/java/org/apache/tamaya/core/internal/converters/CurrencyConverterTest.java
 
b/code/core/src/test/java/org/apache/tamaya/core/internal/converters/CurrencyConverterTest.java
index 9113ca2..250e339 100644
--- 
a/code/core/src/test/java/org/apache/tamaya/core/internal/converters/CurrencyConverterTest.java
+++ 
b/code/core/src/test/java/org/apache/tamaya/core/internal/converters/CurrencyConverterTest.java
@@ -20,6 +20,7 @@ package org.apache.tamaya.core.internal.converters;
 
 import org.apache.tamaya.Configuration;
 import org.apache.tamaya.ConfigurationProvider;
+import org.junit.Ignore;
 import org.junit.Test;
 
 import java.util.Currency;
@@ -36,7 +37,7 @@ public class CurrencyConverterTest {
  * {@link 
org.apache.tamaya.core.internal.converters.ConverterTestsPropertySource}.
  * @throws Exception
  */
-@Test
+@Test @Ignore
 public void testConvert_Currency_Code_CHF() throws Exception {
 Configuration config = ConfigurationProvider.getConfiguration();
 Currency valueRead = config.get("tests.converter.currency.code1", 
Currency.class);
@@ -49,7 +50,7 @@ public class CurrencyConverterTest {
  * {@link 
org.apache.tamaya.core.internal.converters.ConverterTestsPropertySource}.
  * @throws Exception
  */
-@Test
+@Test @Ignore
 public void testConvert_Currency_Code_cHf() throws Exception {
 Configuration config = ConfigurationProvider.getConfiguration();
 Currency valueRead = config.get("tests.converter.currency.code2", 
Currency.class);
@@ -62,7 +63,7 @@ public class CurrencyConverterTest {
  * {@link 
org.apache.tamaya.core.internal.converters.ConverterTestsPropertySource}.
  * @throws Exception
  */
-@Test
+@Test @Ignore
 public void testConvert_Currency_Code_CHF_Whitespace_Before() throws 
Exception {
 Configuration config = ConfigurationProvider.getConfiguration();
 Currency valueRead = config.get("tests.converter.currency.code3", 
Currency.class);
@@ -75,7 +76,7 @@ public class CurrencyConverterTest {
  * {@link 
org.apache.tamaya.core.internal.converters.ConverterTestsPropertySource}.
  * @throws Exception
  */
-@Test
+@Test @Ignore
 public void testConvert_Currency_Code_CHF_Whitespace_After() throws 
Exception {
 Configuration config = ConfigurationProvider.getConfiguration();
 Currency valueRead = config.get("tests.converter.currency.code4", 
Currency.class);
@@ -88,7 +89,7 @@ public class CurrencyConverterTest {
  * {@link 
org.apache.tamaya.core.internal.converters.ConverterTestsPropertySource}.
  * @throws Exception
  */
-@Test
+@Test @Ignore
 public void testConvert_Currency_Code_CHF_Whitespace_Around() throws 
Exception {
 Configuration config = ConfigurationProvider.getConfiguration();
 Currency valueRead = config.get("tests.converter.currency.code5", 
Currency.class);
@@ -101,7 +102,7 @@ public class CurrencyConverterTest {
  * {@link 
org.apache.tamaya.core.internal.converters.ConverterTestsPropertySource}.
  * @throws Exception
  */
-@Test
+@Test @Ignore
 public void testConvert_Currency_Code_Numeric() throws Exception {
 Configuration config = ConfigurationProvider.getConfiguration();
 Currency valueRead = 
config.get("tests.converter.currency.code-numeric1", Currency.class);
@@ -123,7 +124,7 @@ public class CurrencyConverterTest {
  * {@link 
org.apache.tamaya.core.internal.converters.ConverterTestsPropertySource}.
  * @throws Exception
  */
-@Test
+@Test @Ignore
 public void testConvert_Currency_Code_Locale() throws Exception {
 Configuration config = ConfigurationProvider.getConfiguration();
 Currency valueRead = 
config.get("tests.converter.currency.code-locale1", Currency.class);
@@ -145,7 +146,7 @@ public class CurrencyConverterTest {
  * {@link 
org.apache.tamaya.core.internal.converters.ConverterTestsPropertySource}.
  * @throws Exception
  */
-@Test
+@Test @Ignore
 public void testConvert_NotPresent() throws Exception {
 Configuration config = ConfigurationProvider.getConfiguration();
 Byte valueRead = config.get("tests.converter.byte.foo", Byte.class);

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/5080c04e/code/core/src/test/java/org/apache/tamaya/core/internal/converters/DoubleConverterTest.java
--
diff --git 
a/code/core/src/test/java/org/apache/tamaya/core/internal/converters/DoubleConverterTest.java
 

[incubator-tamaya] Git Push Summary

2017-09-16 Thread plexus
Repository: incubator-tamaya
Updated Branches:
  refs/heads/tamaya-289 [created] 32be37e25


incubator-tamaya git commit: [TAMAYA-288] Unifed configuration.

2017-09-16 Thread plexus
Repository: incubator-tamaya
Updated Branches:
  refs/heads/master 20c51a02a -> 32be37e25


[TAMAYA-288] Unifed configuration.


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

Branch: refs/heads/master
Commit: 32be37e25e009fc9a593316b389bad3f32e97c70
Parents: 20c51a0
Author: Oliver B. Fischer 
Authored: Sat Sep 16 15:05:13 2017 +0200
Committer: Oliver B. Fischer 
Committed: Sat Sep 16 15:05:13 2017 +0200

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


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/32be37e2/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 2cdce22..05de4bb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -302,14 +302,15 @@
 pitest-maven
 ${pitest-plugin.version}
 
-80
+50
 false
 
 org.apache.tamaya.*
 
-   
- toString
+ 
+ toString
 
+true
 
 
 
@@ -748,10 +749,6 @@
 
 mutationCoverage
 
-
-49
-49
-
 
 
 



incubator-tamaya git commit: [TAMAYA-288] Update of org.pitest:pitest-maven (1.1.11 -> 1.2.2).

2017-09-16 Thread plexus
Repository: incubator-tamaya
Updated Branches:
  refs/heads/master 19e0a0bf7 -> 20c51a02a


[TAMAYA-288] Update of org.pitest:pitest-maven (1.1.11 -> 1.2.2).


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

Branch: refs/heads/master
Commit: 20c51a02a889bed619ac3a2de8e7f20e8699bd4f
Parents: 19e0a0b
Author: Oliver B. Fischer 
Authored: Sat Sep 16 14:00:18 2017 +0200
Committer: Oliver B. Fischer 
Committed: Sat Sep 16 14:03:02 2017 +0200

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


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/20c51a02/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 976..2cdce22 100644
--- a/pom.xml
+++ b/pom.xml
@@ -60,7 +60,7 @@
 1.2.1
 1.5.2
 2.15
-1.1.11
+1.2.2
 1.4.1
 1.0.7
 3.0.1



[2/2] incubator-tamaya git commit: [TAMAYA-288] Set coverage threshold and mutation coverage to 49%. That means that a covrage build with less then 50% will fail.

2017-09-16 Thread plexus
[TAMAYA-288] Set coverage threshold and mutation coverage to 49%. That means 
that a covrage build with less then 50% will fail.


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

Branch: refs/heads/master
Commit: 19e0a0bf7b949113d0bc5f30f1f4b4323443cf1e
Parents: efd03e1
Author: Oliver B. Fischer 
Authored: Sat Sep 16 13:29:21 2017 +0200
Committer: Oliver B. Fischer 
Committed: Sat Sep 16 13:29:21 2017 +0200

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


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/19e0a0bf/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 432302a..976 100644
--- a/pom.xml
+++ b/pom.xml
@@ -748,6 +748,10 @@
 
 mutationCoverage
 
+
+49
+49
+
 
 
 



[1/2] incubator-tamaya git commit: [TAMAYA-288] Added the profile coverage to check the coverage of Tamaya API.

2017-09-16 Thread plexus
Repository: incubator-tamaya
Updated Branches:
  refs/heads/master 91c8eb438 -> 19e0a0bf7


[TAMAYA-288] Added the profile coverage to check the coverage of Tamaya 
API


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

Branch: refs/heads/master
Commit: efd03e14bde563afc07339438178184bdd4ac805
Parents: 91c8eb4
Author: Oliver B. Fischer 
Authored: Sat Sep 16 12:47:08 2017 +0200
Committer: Oliver B. Fischer 
Committed: Sat Sep 16 12:47:08 2017 +0200

--
 pom.xml | 22 +-
 1 file changed, 21 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/efd03e14/pom.xml
--
diff --git a/pom.xml b/pom.xml
index c9cba10..432302a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -735,7 +735,27 @@
 
 
 
-
 
 release