Forum Discussion
redfish4ktc2
13 years agoSuper Contributor
Hi,
I've just found why there are compilation errors with soapui 4.5.1 dependency
Classes in the com.eviware.soapui.junit are generated from xml schema.
Starting from soapui 4.5.2, all generated classes from xml schema are directly stored in the soapui jar.
But before, they were stored in various jar.
So if you want to compile with soapui 4.5.1 and access to the com.eviware.soapui.junit classes, you need to add the following dependency (remember the soapui 4.5.1 pom does not declare any dependency)
I've just found why there are compilation errors with soapui 4.5.1 dependency
Classes in the com.eviware.soapui.junit are generated from xml schema.
Starting from soapui 4.5.2, all generated classes from xml schema are directly stored in the soapui jar.
But before, they were stored in various jar.
So if you want to compile with soapui 4.5.1 and access to the com.eviware.soapui.junit classes, you need to add the following dependency (remember the soapui 4.5.1 pom does not declare any dependency)
<dependency>
<groupId>eviware</groupId>
<artifactId>ext-xmlbeans</artifactId>
<version>1.2</version>
<dependency>