Solved
Forum Discussion
TanyaYatskovska
Alumni
8 years agoHi Andy,
I suppose that this error is related to the fact that an old plugin version was installed on the computer. Remove it from the .soapuios/plugins/ folder, or clear the entire folder and install the newest version again.
As for this:
A required class was missing while executing com.smartbear.soapui:soapui-maven-plugin:5.3.0:test: com/jgoodies/forms/layout/CellConstraints
I was said that you need to add Dependency to your POM.
Deleting previous plugins didn't help.
What helped though: someone else was having similar problem but with v. 5.2.1: http://frmchandan.blogspot.com.au/2017/03/dependency-error-soapui-521.html
...so I added this dependency into pom.xml file:
<dependency> <groupId>com.jgoodies</groupId> <artifactId>forms</artifactId> <version>1.0.7</version> </dependency>
and that fixed it :smileywink:
- jasonkilgrow7 years agoNew Contributor
It might be helpful to note that this dependency should be added to the plugin dependencies and not the project dependencies in the pom.xml.