Skip to content

Instantly share code, notes, and snippets.

@biemond
Created July 31, 2014 10:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save biemond/25992506ab31751dc1bf to your computer and use it in GitHub Desktop.
Save biemond/25992506ab31751dc1bf to your computer and use it in GitHub Desktop.
soapui
<plugin>
<groupId>com.smartbear.soapui</groupId>
<artifactId>soapui-maven-plugin</artifactId>
<version>5.0.0</version>
<configuration>
<projectFile>${project.basedir}/src/main/test/resources/soapui/person-soapui-project.xml</projectFile>
<junitReport>true</junitReport>
<printReport>true</printReport>
<exportAll>true</exportAll>
<testSuite>PersonTestSuite1</testSuite>
<testCase>Persons</testCase>
<endpoint>${project_wsurl}</endpoint>
<outputFolder>${project.build.directory}/soapui</outputFolder>
</configuration>
<executions>
<execution>
<phase>integration-test</phase>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment