Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>I had a similar requirement to run some plugins in the child but not the parent POM. i achieved this by stating <code>&lt;skip&gt;true&lt;/skip&gt;</code> in the parent POM.</p> <p>The parent pom entry is below:</p> <pre class="lang-xml prettyprint-override"><code>&lt;plugin&gt; &lt;groupId&gt;eviware&lt;/groupId&gt; &lt;artifactId&gt;maven-soapui-plugin&lt;/artifactId&gt; &lt;version&gt;4.0.0&lt;/version&gt; &lt;inherited&gt;false&lt;/inherited&gt; &lt;dependencies&gt; &lt;dependency&gt; &lt;groupId&gt;junit&lt;/groupId&gt; &lt;artifactId&gt;junit&lt;/artifactId&gt; &lt;version&gt;4.8.2&lt;/version&gt; &lt;/dependency&gt; &lt;/dependencies&gt; &lt;configuration&gt; &lt;skip&gt;true&lt;/skip&gt; &lt;/configuration&gt; &lt;/plugin&gt; </code></pre> <p>The child project pom entry is below </p> <pre class="lang-xml prettyprint-override"><code>&lt;plugins&gt; &lt;plugin&gt; &lt;groupId&gt;eviware&lt;/groupId&gt; &lt;artifactId&gt;maven-soapui-plugin&lt;/artifactId&gt; &lt;version&gt;4.0.0&lt;/version&gt; &lt;configuration&gt; &lt;settingsFile&gt;site-service-web/src/test/soapui/soapui-settings.xml&lt;/settingsFile&gt; &lt;projectFile&gt;site-service-web/src/test/soapui/PodifiSite-soapui-project.xml&lt;/projectFile&gt; &lt;outputFolder&gt;site-service-web/target/surefire-reports&lt;/outputFolder&gt; &lt;junitReport&gt;true&lt;/junitReport&gt; &lt;exportwAll&gt;true&lt;/exportwAll&gt; &lt;printReport&gt;true&lt;/printReport&gt; &lt;/configuration&gt; &lt;/plugin&gt; &lt;/plugins&gt; </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload