Anand
Anand

Reputation: 238

SOAPUI 5.3 facing issue NoClassDefFoundError com/eviware/soapui/analytics/Analytics

Project gets loaded after disabling plugins as mentioned in one of post but now i am facing issue with com.eviware.soapui.analytics.Analytics not found at the time of addTestStep.

I verified in latest soapui-5.3.0 jar and that class is not available. I don't know if that class is available in some other SOAPUI version?

I am using community version (Open Source). Kindly help.

Upvotes: 1

Views: 616

Answers (1)

Rao
Rao

Reputation: 21379

Refering to the article

If you are using maven, then use below dependencies

<dependency>
<groupId>com.smartbear.utils.analytics</groupId>
<artifactId>analytics-core</artifactId>
<version>5.2.1</version>
</dependency>
<dependency>
<groupId>com.smartbear.utils.analytics</groupId>
<artifactId>out-app-analytics-provider</artifactId>
<version>5.2.1</version>
</dependency>

Otherwise, download the jar files from below location for Soapui 5.3.0 and copy them under SOAPUI_HOME/lib and restart SoapUI tool.

analytics-core-5.3.0.jar
out-app-analytics-provider-5.3.0.jar

Upvotes: 2

Related Questions