use multiple executions

2008/11/19 partha_ctc <[EMAIL PROTECTED]>

>
> hi,
> i have already used ant-run plugin a followed
> <plugin>
>                <groupId>org.apache.maven.plugins</groupId>
>                <artifactId>maven-antrun-plugin</artifactId>
>                <version>1.1</version>
>                <executions>
>                <execution>
>                        <id>prepare-dependencies-repackage-copy</id>
>                        <phase>generate-resources</phase>
>                         <goals>
>                             <goal>run</goal>
>                        </goals>
>                 <configuration>
>                         <tasks>
>        <echo>Partha------------8888888888-${eim_home}</echo>
>                <copy todir="${project.build.directory}/dependency"
> overwrite="true">
>                        <fileset dir="${eim_home}"  includes="*.xml" />
>                        </copy>
>                         <copy>......another copy function for some
> jars</copy>
>                 </tasks>
>                </configuration>
>                </execution>
>               </executions>
>            </plugin>
> again i want to do some coy task after some command execution
> (process-resource of dependancy and then war:war , and then want to do copy
> task) . so if i am writting another ant plugin then it is not executing the
> task. so i want another plug in which will do copy functionality.
>
> or can we sub task generate-resources , so that i can execute multiple
> commands using generate-resources. if yes then whta is the syntax ?
>
> --
> View this message in context:
> http://www.nabble.com/maven-copy-jars-from-one-folder-to-other-apart-using-ant-plugin--as-i-have-already-usedHi%2C-tp20573263p20576213.html
> Sent from the Maven - Users mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

Reply via email to