Workaround to avoid surefire plugin error

* do not use system classloader
* upgrade maven-surefire-plugin to ver. 2.22.1

Change-Id: I8bc83a59164c4a79bae036600cacb450cdc8feb9
Story: 2004256
Task: 27792
This commit is contained in:
Witold Bedyk 2018-11-05 14:14:10 +01:00
parent 18e2980096
commit 77887bbf05
1 changed files with 2 additions and 1 deletions

View File

@ -69,9 +69,10 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.16</version>
<version>2.22.1</version>
<configuration>
<excludedGroups>performance,functional,integration,database,slow</excludedGroups>
<useSystemClassLoader>false</useSystemClassLoader>
</configuration>
</plugin>
<plugin>