Repository: incubator-tamaya-sandbox Updated Branches: refs/heads/master ab003713b -> 7d9b6d5d3
Make microprofile build locally with JDK8 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/7d9b6d5d Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/tree/7d9b6d5d Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/diff/7d9b6d5d Branch: refs/heads/master Commit: 7d9b6d5d37966c3cde5e0e3f103337838bb2d143 Parents: ab00371 Author: Phil Ottlinger <[email protected]> Authored: Mon Oct 9 22:13:37 2017 +0200 Committer: Phil Ottlinger <[email protected]> Committed: Mon Oct 9 22:13:37 2017 +0200 ---------------------------------------------------------------------- microprofile/pom.xml | 3 +-- .../org/apache/tamaya/microprofile/MicroprofileConfigTest.java | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/blob/7d9b6d5d/microprofile/pom.xml ---------------------------------------------------------------------- diff --git a/microprofile/pom.xml b/microprofile/pom.xml index 9273e4f..e3bad3e 100644 --- a/microprofile/pom.xml +++ b/microprofile/pom.xml @@ -23,7 +23,6 @@ under the License. <groupId>org.apache.tamaya.ext</groupId> <artifactId>tamaya-sandbox</artifactId> <version>0.4-incubating-SNAPSHOT</version> - <relativePath>..</relativePath> </parent> <artifactId>tamaya-microprofile_alpha</artifactId> @@ -145,7 +144,7 @@ under the License. <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> - <version>2.20</version> + <version>2.20.1</version> <configuration> <suiteXmlFiles> <suiteXmlFile>src/test/tck-suite.xml</suiteXmlFile> http://git-wip-us.apache.org/repos/asf/incubator-tamaya-sandbox/blob/7d9b6d5d/microprofile/src/test/java/org/apache/tamaya/microprofile/MicroprofileConfigTest.java ---------------------------------------------------------------------- diff --git a/microprofile/src/test/java/org/apache/tamaya/microprofile/MicroprofileConfigTest.java b/microprofile/src/test/java/org/apache/tamaya/microprofile/MicroprofileConfigTest.java index 21d0bb9..b7bc482 100644 --- a/microprofile/src/test/java/org/apache/tamaya/microprofile/MicroprofileConfigTest.java +++ b/microprofile/src/test/java/org/apache/tamaya/microprofile/MicroprofileConfigTest.java @@ -18,7 +18,6 @@ */ package org.apache.tamaya.microprofile; -import org.apache.tamaya.ConfigurationProvider; import org.eclipse.microprofile.config.Config; import org.eclipse.microprofile.config.ConfigProvider; import org.eclipse.microprofile.config.spi.ConfigSource; @@ -42,7 +41,7 @@ public class MicroprofileConfigTest { for (ConfigSource cs : sources) { count++; } - assertEquals(count, 5); + assertEquals(3, count); } @Test
