maven2中执行Ant任务
Maven调用Ant脚本的最佳实践http://huqicto.blog.51cto.com/1308987/280889
maven2中执行Ant任务http://blog.csdn.net/wfnlibo/article/details/1499704
首先增加:
<dependency> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>1.7</version> </dependency>
原文:
在maven中有完整的开发生命周期,但有时候却不能按自己的想法灵活的设置一些任务,这就想到了ANT(我想到的maven的开发者们也想到了,所以有一个maven-antrun-plugin),可以在maven中执行ant任务.
在Maven中执行ant任务有两种方法:
1、在pom.xml中直接写ANT任务
<build> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <copy todir="E:workspaceRB_MyFaces argetclasses"> <fileset includes="hibernate.cfg.xml" dir="E:workspaceRB_MyFacessrcmainjava"></fileset> <fileset includes="MessageResources.properties" dir="E:workspaceRB_MyFacessrcmainjava"></fileset> </copy> </tasks> </configuration> </execution> </executions> </plugin> </plugins> </build>
2、在pom.xml中调用ANT文件
把上例中的<tasks></tasks>中的任务移到一个build.xml文件中,然后加入下面这句话
<ant antfile="build.xml" target="default" />
就可以执行build.xml文件中default任务了.
相关推荐
BitsPlayer 2020-05-29
roygbip 2020-02-16
BitsPlayer 2020-02-13
lrcoop 2020-02-03
chichichi0 2020-01-06
BitsPlayer 2019-12-19
BitsPlayer 2019-12-14
xueliangEmail 2013-07-22
cailianren 2010-04-15
wugang0 2019-11-09
lustdevil 2011-08-28
evilvoid 2008-04-17
leonranri 2019-11-05
leeccr 2019-10-31
evilvoid 2010-02-02