Thanks for the reply.
I'm focusing on the 4.5.1 plugin version now, but I am getting some build errors:
[ERROR] Failed to execute goal eviware:maven-soapui-pro-plugin:4.5.1:test (soap-ui-test) on project vagabond-parent: Execution soap-ui-test of goal eviware:maven-soapui-pro-plugin:4.5.1:test failed: A required class was missing while executing eviware:maven-soapui-pro-plugin:4.5.1:test: org/fife/ui/rsyntaxtextarea/templates/CodeTemplate
I know I have the eviware repo for the soap ui pro plugin setup correctly because I see a bunch of other soap UI pro plugin -related libraries being downloaded.
Here are the relevant configuration sections of my pom:
<pluginRepository>
<id>eviwarePluginRepository</id>
<url>
http://www.soapui.org/repository/maven2</url> </pluginRepository>
...
<pluginManagement>
<plugin>
<groupId>eviware</groupId>
<artifactId>maven-soapui-pro-plugin</artifactId>
<version>4.5.1</version>
</plugin>
</pluginManagement>
...
<profile>
<id>live_scraper</id>
<build>
<plugins>
<plugin>
<groupId>eviware</groupId>
<artifactId>maven-soapui-pro-plugin</artifactId>
<version>4.5.1</version>
<configuration>
...
</configuration>
<executions>
<execution>
<id>soap-ui-test</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
Thanks,
Andra