Repository: bigtop Updated Branches: refs/heads/master a0a926980 -> aaffc1e2c
BIGTOP-3107: Patch from upstream correcting the Maven surefire break from newer Java SDK Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/aaffc1e2 Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/aaffc1e2 Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/aaffc1e2 Branch: refs/heads/master Commit: aaffc1e2c52232ceadebdcd23a6dd47a190baa9f Parents: a0a9269 Author: Arnaud Launay <[email protected]> Authored: Mon Dec 3 12:00:48 2018 +0100 Committer: Arnaud Launay <[email protected]> Committed: Mon Dec 3 12:00:48 2018 +0100 ---------------------------------------------------------------------- .../src/common/qfs/patch1-maven-surefire.diff | 29 ++++++++++++++++++++ 1 file changed, 29 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/aaffc1e2/bigtop-packages/src/common/qfs/patch1-maven-surefire.diff ---------------------------------------------------------------------- diff --git a/bigtop-packages/src/common/qfs/patch1-maven-surefire.diff b/bigtop-packages/src/common/qfs/patch1-maven-surefire.diff new file mode 100644 index 0000000..1dd9400 --- /dev/null +++ b/bigtop-packages/src/common/qfs/patch1-maven-surefire.diff @@ -0,0 +1,29 @@ +From 7af25985e802eafec2307307e1703f9191b49b9f Mon Sep 17 00:00:00 2001 +From: Mike Ovsiannikov <[email protected]> +Date: Thu, 1 Nov 2018 17:50:30 -0700 +Subject: [PATCH] Java build: work around new oracle SDK problem by setting use + system class loader property for sure fire plugin. + +--- + src/java/pom.xml | 8 ++++++++ + 1 file changed, 8 insertions(+) + +diff --git a/src/java/pom.xml b/src/java/pom.xml +index ca4a7f4e..ae28ff72 100644 +--- a/src/java/pom.xml ++++ b/src/java/pom.xml +@@ -42,6 +42,14 @@ permissions and limitations under the License. + <artifactId>maven-compiler-plugin</artifactId> + <version>2.3</version> + </plugin> ++ <plugin> ++ <groupId>org.apache.maven.plugins</groupId> ++ <artifactId>maven-surefire-plugin</artifactId> ++ <version>2.22.1</version> ++ <configuration> ++ <useSystemClassLoader>false</useSystemClassLoader> ++ </configuration> ++ </plugin> + </plugins> + </build> +
