Forum Discussion
nmrao
13 years agoCommunity Hero
As mentioned earlier, no hands on maven.
The post given in the previous reponse worked for the community member.
I believe, if pom.xml is defined correctly it is normally be not an issue.
In windows, some times it asks for confirmation with a dialog popup "block", "unblock" when certain programs are invoked. Seems similar thing you are facing.
In the pom.xml, it was given as below for mock(reference link)
Just a wild guess, <noBlock>true</noBlock> would be the key. Hoping that you might have the similar goal defined. Please check what you have in your pom.xml.
If you still face any issue, it would be good to attach pom.xml or relevant code snippet of it.
The post given in the previous reponse worked for the community member.
I believe, if pom.xml is defined correctly it is normally be not an issue.
In windows, some times it asks for confirmation with a dialog popup "block", "unblock" when certain programs are invoked. Seems similar thing you are facing.
In the pom.xml, it was given as below for mock(reference link)
<execution>
<id>StartupMock</id>
<configuration>
<projectFile>src/test/soapui/MyMock-soapui-project.xml</projectFile>
<outputFolder>${project.build.directory}/surefire-reports</outputFolder>
<junitReport>true</junitReport>
<host>http://127.0.0.1:8181</host>
<mockService>DataProviderMock</mockService>
<noBlock>true</noBlock>
</configuration>
<goals>
<goal>mock</goal>
</goals>
<phase>process-test-classes</phase>
</execution>
Just a wild guess, <noBlock>true</noBlock> would be the key. Hoping that you might have the similar goal defined. Please check what you have in your pom.xml.
If you still face any issue, it would be good to attach pom.xml or relevant code snippet of it.