ContributionsMost RecentMost LikesSolutionsRe: maven in parallelYes, this is an option indeed, however, I want to use maven 3 parallel feature, but the soapui plugin fails since it is not thread safe. The reason I want to use the maven's parallel capability is that my projects are arranged as a multi-module maven projects. I want to run each module in parallel. Using Soapui threads to run all test suites in a project in parallel is over-kill. Any chance having a thread safe plugin in the foreseeable future? Thanks Daniekmaven in parallelHello, Is there a possibility to run test-suites in parallel using maven? Thanks Danielsoapui maven plugin and multi-module projectHello, I have several soapui-pro composite projects that are executed each by the soapui-pro maven plugin. I want to be able to execute a maven process once, which will build all those projects. For this purpose, I constructed a multi module maven project hierarchy, where all composite projects directories reside under one parent directory. Inside this parent directory is a parent pom.xml which defines inside the <modules> section all the composite projects. Running the maven parent pom.xml results in the following error: 17:47:02,239 INFO [SoapUIProGroovyScriptEngineFactory] Setting Script Library to [C:\SoapUI\AutoTests\scripts] . is not composite project directory. java.io.FileNotFoundException: at java.io.FileInputStream.open(Native Method) AND THEN: 17:47:02,239 INFO [SoapUIProGroovyScriptEngineFactory] Setting Script Library to [C:\SoapUI\AutoTests\scripts] . is not composite project directory. java.io.FileNotFoundException: at java.io.FileInputStream.open(Native Method) It seems that soapui plugin tries to find projects on the parent directory. Is there any way to change the working directory to the module being built? Thanks Daniel