jpr
5 years agoOccasional Contributor
SoapUI on JDK11
Hi, When is the 5.6 release of SoapUI planned? Will it support JDK11? https://github.com/SmartBear/soapui/issues/487 Kind regards, Jimmy
Hi. For my specific use case, where I am using the soapui library from within a unit test, the following two-part workaround solves it for me:
1. Add this dependency exclusion to the pom.xml:
<exclusion>
<groupId>com.smartbear.utils.analytics</groupId>
<artifactId>out-app-analytics-provider</artifactId>
</exclusion>
2. Disable analytics:
com.eviware.soapui.SoapUI.getSettings().setBoolean(UISettings.DISABLE_ANALYTICS, true);
Kind regards,
Jimmy