diff options
-rwxr-xr-x | epsdk-app-onap/pom.xml | 4 | ||||
-rwxr-xr-x | vid-app-common/pom.xml | 1 | ||||
-rw-r--r-- | vid-automation/pom.xml | 1 |
3 files changed, 6 insertions, 0 deletions
diff --git a/epsdk-app-onap/pom.xml b/epsdk-app-onap/pom.xml index 85731d1b9..b46c0fe81 100755 --- a/epsdk-app-onap/pom.xml +++ b/epsdk-app-onap/pom.xml @@ -143,6 +143,7 @@ <systemPropertyVariables>
<container.classpath>classpath:</container.classpath>
</systemPropertyVariables>
+ <useSystemClassLoader>false</useSystemClassLoader>
</configuration>
</plugin>
@@ -210,6 +211,9 @@ <plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.17</version>
+ <configuration>
+ <useSystemClassLoader>false</useSystemClassLoader>
+ </configuration>
</plugin>
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
diff --git a/vid-app-common/pom.xml b/vid-app-common/pom.xml index 658bf71d5..d687568dc 100755 --- a/vid-app-common/pom.xml +++ b/vid-app-common/pom.xml @@ -173,6 +173,7 @@ <systemPropertyVariables> <container.classpath>classpath:</container.classpath> </systemPropertyVariables> + <useSystemClassLoader>false</useSystemClassLoader> </configuration> </plugin> diff --git a/vid-automation/pom.xml b/vid-automation/pom.xml index 75d48a4b5..f8bd6460b 100644 --- a/vid-automation/pom.xml +++ b/vid-automation/pom.xml @@ -224,6 +224,7 @@ <argLine> -javaagent:${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar </argLine> + <useSystemClassLoader>false</useSystemClassLoader> </configuration> </plugin> </plugins> |