Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>you can redirect your strategy to activation of different profiles depending on the existence of the file instead of antrun-plugin:</p> <pre><code>&lt;profiles&gt; &lt;profile&gt; &lt;id&gt;notExist&lt;/id&gt; &lt;activation&gt; &lt;file&gt; &lt;missing&gt;target/maven-archiver/notExist.properties&lt;/missing&gt; &lt;/file&gt; &lt;/activation&gt; &lt;build&gt; &lt;plugins&gt; &lt;plugin&gt; &lt;artifactId&gt;maven-antrun-plugin&lt;/artifactId&gt; &lt;version&gt;1.3&lt;/version&gt; &lt;executions&gt; &lt;execution&gt; &lt;phase&gt;package&lt;/phase&gt; &lt;goals&gt; &lt;goal&gt;run&lt;/goal&gt; &lt;/goals&gt; &lt;configuration&gt; &lt;tasks&gt; &lt;echo&gt;not exist&lt;/echo&gt; &lt;/tasks&gt; &lt;/configuration&gt; &lt;/execution&gt; &lt;/executions&gt; &lt;/plugin&gt; &lt;/plugins&gt; &lt;/build&gt; &lt;/profile&gt; &lt;profile&gt; &lt;id&gt;exist&lt;/id&gt; &lt;activation&gt; &lt;file&gt; &lt;exists&gt;target/maven-archiver/pom.properties&lt;/exists&gt; &lt;/file&gt; &lt;/activation&gt; &lt;build&gt; &lt;plugins&gt; &lt;plugin&gt; &lt;artifactId&gt;maven-antrun-plugin&lt;/artifactId&gt; &lt;version&gt;1.3&lt;/version&gt; &lt;executions&gt; &lt;execution&gt; &lt;phase&gt;package&lt;/phase&gt; &lt;goals&gt; &lt;goal&gt;run&lt;/goal&gt; &lt;/goals&gt; &lt;configuration&gt; &lt;tasks&gt; &lt;echo&gt;not exist&lt;/echo&gt; &lt;/tasks&gt; &lt;/configuration&gt; &lt;/execution&gt; &lt;/executions&gt; &lt;/plugin&gt; &lt;/plugins&gt; &lt;/build&gt; &lt;/profile&gt; </code></pre> <p></p> <p>You can use <a href="http://maven.apache.org/guides/introduction/introduction-to-profiles.html" rel="nofollow">activation profiles maven features</a> to distinguish between one configuration and another according the activation criteria.</p> <p>I use the antrun-plugin in example only for do the echo </p>
 

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