Forum Discussion
bmgriner
15 years agoFrequent Contributor
I have made this same suggestion on the community boards, but want to make it known on the pro boards too. It is a very much desired feature to be able to run the maven soapui plugin against multiple projects in a single build.
Susana,
The second feature request you have above can already be done. Put ${endPoint} in your pom.xml file inside the soapui plugin and you will then be able to call:
If you want it to automatically build when you do a mvn install then you should tie an execution of the maven soapui plugin to the install goal. I would actually suggest against tying the execution to that goal. It would make more sense to tie it to integration-test or even the test goal itself.
Susana,
The second feature request you have above can already be done. Put ${endPoint} in your pom.xml file inside the soapui plugin and you will then be able to call:
mvn eviware:maven-soapui-plugin:test -DendPoint=[some_endpoint]
If you want it to automatically build when you do a mvn install then you should tie an execution of the maven soapui plugin to the install goal. I would actually suggest against tying the execution to that goal. It would make more sense to tie it to integration-test or even the test goal itself.