vote up 0 vote down star

Is it possible to attach an ant execution to a specific plugin/goal ? ( I know I'm losing the declarative aspect of maven if I do that..)

flag

25% accept rate

1 Answer

vote up 3 vote down

Check out Maven AntRun plugin, that's exactly what you're looking for

Here is an example from its homepage

<project>
  ...
  <build>
    <plugins>
      ...
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-antrun-plugin</artifactId>
        <version>1.2</version>
        <executions>
          <execution>
            <phase> <!-- a lifecycle phase --> </phase>
            <configuration>

              <!-- ANT TASKS HERE -->

            </configuration>
            <goals>
              <goal>run</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      ...
    </plugins>
  </build>
  ...
</project>
link|flag
Thank you. I'm aware of the plugin. But my question was: Can I attach an ant execution ( as seen in your code) to another plugins goal.. – vpalle May 26 at 7:56
I guessed that, I edited and put the example code for that reason hehe ;) – victor hugo May 26 at 7:57

Your Answer

Get an OpenID
or

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