I know this is a very simple question, but I'm lost on how to solve it.

I want to add an antrun task to my pom.xml that I can execute outside of
any lifecycle phase. In short, I want to run it much like a normal ant goal.

What I currently have is:

         <plugin>
            <artifactId>maven-antrun-plugin</artifactId>
            <executions>
               <execution>
                 <id>myId</id>
                 <configuration>
                    <tasks>
                       <ant antfile="./build.xml" target="t1"/>
                       <ant antfile="./build.xml" target="t2"/>
                    </tasks>
                 </configuration>
                 <goals>
                   <goal>run</goal>
                 </goals>
               </execution>
            </executions>
         </plugin>

I thought that if I execute mvn antrun:run, this would execute the two
listed targets. Instead, I simply get a nice short message stating that
my goals have been executed, but the evidence is to the contrary.

Note that if I do add a phase to this markup, and execute against that phase, all is well. This is not, though, what I desire to do.

Any help is appreciated.

Regards,
--

Mike Darretta
NIC Web Project Lead
Computer Sciences Corporation (CSC)
(o) 831.656.4324
(c) 209.814.2774
[EMAIL PROTECTED]

------------------------------------------------------------
This is a PRIVATE message. If you are not the intended recipient, please
delete without copying and kindly advise us by e-mail of the mistake in
delivery. NOTE: Regardless of content, this e-mail shall not operate to
bind CSC to any order or other contract unless pursuant to explicit
written agreement or government initiative expressly permitting the use
of e-mail for such purpose.
------------------------------------------------------------



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to