diff options
author | Paul Vaduva <Paul.Vaduva@enea.com> | 2018-12-11 13:52:36 +0100 |
---|---|---|
committer | Paul Vaduva <Paul.Vaduva@enea.com> | 2018-12-17 09:39:48 +0100 |
commit | 304efbf8672db43eef4f2e9e5d74a148890c73c0 (patch) | |
tree | 6d8b7a8f30b85b2c406d30cb21286b7ca15e03b9 | |
parent | 2b8ff80b2a7af16ee75976af29a9b1c6d475c994 (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.xml | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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>
|