How can I disable maven-antrun-plugin execution when certain file already exists?:

[...]
<plugin>
  <artifactId>maven-antrun-plugin</artifactId>
  <version>1.6</version>
  <executions>
    <execution>
      <phase>test</phase>
      <goals>
        <goal>run</goal>
      </goals>
      <configuration>
        <target>
          <!-- do something really complex in order to create file.txt -->
        </target>
      </configuration>
    </execution>
  </executions>
</build>
[...]

The execution takes some time and I don't want to repeat it every time when file.txt is already there.

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

Check for the presence of the file in your standalone Ant file. Example:

<target name="check-file">
    <available file="foo.bar" property="fileExists" />
</target>

<target name="time-consuming" depends="check-file" unless="fileExists">
    ...
</target>
link|improve this answer
could you please give a short example here? I tried what is suggested here (stackoverflow.com/questions/133710), but failed to make it working inside Maven. – yegor256 Mar 15 '11 at 11:59
maven antrun plugin doesn't accept two <target>s – yegor256 Mar 15 '11 at 12:10
2  
@yegor256 Indeed, but I assume you use an external Ant file and your POM calls the time-consuming target. – Laurent Pireyn Mar 15 '11 at 12:13
feedback

Use a <profile> that's only active if file.txt doesn't exist:

<profiles>
    <profile>
        <id>createFile</id>
        <activation><file><missing>file.txt</missing></file></activation>
        <build><plugins>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-antrun-plugin</artifactId>
                <version>1.6</version>
                <!-- etc -->
            </plugin>

        </plugins></build>
    </profile>
</profiles>

Reference:

link|improve this answer
There is one problem. When I run mvn clean test the file exists during POM initialization, but is destroyed after clean phase. Thus, antrun execution is not started, while required... Any thoughts? – yegor256 Mar 15 '11 at 12:38
@yegor Sorry, that's how it works. Profiles get evaluated before the build is started and they don't get re-evaluated between goals – Sean Patrick Floyd Mar 15 '11 at 13:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.