From 0b65d4053eb41fd4747c5718ffd1cbd5d46fc455 Mon Sep 17 00:00:00 2001 From: Paul Vaduva Date: Tue, 18 Dec 2018 12:57:09 +0100 Subject: [PATCH] Enable vid docker build jobs to use java-1.8 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Overcome security features in java-1.8 that prevent the forked java VM’s to use relative paths for loading the classes. This fix was the simplest for arm64 docker build jobs, and the least affecting the x86 build’s. We need to modify all the definitions of surefire. Change-Id: I0c10598c1c3a8765e1f1b509288a694b60df7389 Issue-ID: VID-366 Signed-off-by: Paul Vaduva --- epsdk-app-onap/pom.xml | 4 ++++ vid-app-common/pom.xml | 1 + vid-automation/pom.xml | 1 + 3 files changed, 6 insertions(+) diff --git a/epsdk-app-onap/pom.xml b/epsdk-app-onap/pom.xml index 85731d1b..b46c0fe8 100755 --- a/epsdk-app-onap/pom.xml +++ b/epsdk-app-onap/pom.xml @@ -143,6 +143,7 @@ classpath: + false @@ -210,6 +211,9 @@ maven-surefire-plugin 2.17 + + false + org.sonarsource.scanner.maven diff --git a/vid-app-common/pom.xml b/vid-app-common/pom.xml index 658bf71d..d687568d 100755 --- a/vid-app-common/pom.xml +++ b/vid-app-common/pom.xml @@ -173,6 +173,7 @@ classpath: + false diff --git a/vid-automation/pom.xml b/vid-automation/pom.xml index 75d48a4b..f8bd6460 100644 --- a/vid-automation/pom.xml +++ b/vid-automation/pom.xml @@ -224,6 +224,7 @@ -javaagent:${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar + false -- 2.16.6