redfish4ktc2
11 years agoSuper Contributor
pro maven plugin 5.1.0/5.1.1 missing reflections dependency
Hi,
the 5.1.0 and 5.1.1 versions can not be used out of the box. We always get the following
This is currently not fixed in the 5.1.1-m-SNAPSHOT version
The release notes file should also be modified to state this library is pro only (cf https://github.com/SmartBear/soapui/blo ... ES.txt#L64)
current workaround is to add the reflections dependency directly when using the plugin
the 5.1.0 and 5.1.1 versions can not be used out of the box. We always get the following
Caused by: java.lang.NoClassDefFoundError: org/reflections/Configuration
This is currently not fixed in the 5.1.1-m-SNAPSHOT version
The release notes file should also be modified to state this library is pro only (cf https://github.com/SmartBear/soapui/blo ... ES.txt#L64)
current workaround is to add the reflections dependency directly when using the plugin
<plugin>
<groupId>com.smartbear.soapui</groupId>
<artifactId>soapui-pro-maven-plugin</artifactId>
<version>5.1.1</version>
<configuration>
</configuration>
<dependencies>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.9.9-RC1</version>
</dependency>
</dependencies>
</plugin>