aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Vaduva <Paul.Vaduva@enea.com>2018-12-11 13:52:36 +0100
committerPaul Vaduva <Paul.Vaduva@enea.com>2018-12-17 09:39:48 +0100
commit304efbf8672db43eef4f2e9e5d74a148890c73c0 (patch)
tree6d8b7a8f30b85b2c406d30cb21286b7ca15e03b9
parent2b8ff80b2a7af16ee75976af29a9b1c6d475c994 (diff)
Enable vid docker build jobs to use java-1.8
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. Change-Id: I3d9394ec698ca5ab5674e60ca5fcd9802f2ab04d Issue-ID: VID-366 Signed-off-by: Paul Vaduva <Paul.Vaduva@enea.com>
-rw-r--r--pom.xml3
1 files changed, 3 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 93f4f77b7..de4b76607 100644
--- a/pom.xml
+++ b/pom.xml
@@ -142,6 +142,9 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.17</version>
+ <configuration>
+ <useSystemClassLoader>false</useSystemClassLoader>
+ </configuration>
</plugin>
<plugin>