快速业务通道

初学maven(4)-使用maven ant task实现非标准打包 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-16
Id>        <version>1.2.13</version>        <scope>compile</scope>      </dependency>      <dependency>        <groupId>org.testng</groupId>        <artifactId>testng</artifactId>        <version>5.8</version>        <scope>test</scope>        <classifier>jdk15</classifier>      </dependency>

其中commons-codec,log4j是需要打包到lib中的,运行时需要。testng(或者更一般的junit)是用来单元测试的,不需要打包到lib中。请注意它的设置"<scope>test</scope>"。

2. 然后看看build.properties文件,这个内容不多:

M2_REPO=G:/soft/maven/localRepository

path.package=package path.target.name=anttaskdemo1 path.package.lib=lib path.package.log=log path.package.config=config path.package.bin=

M2_REPO稍后再详谈,后面的path.package之类的是最终打包时使用的几个目录名称,对应于最终打包的结构。

3. build.xml,这个内容比较多。 <?xmlversion="1.0"encoding="UTF-8"?> <projectname="demo"default="all"xmlns:artifact="urn:maven-artifact-ant">    <description>    </description>    <propertyfile="build.properties"/>    <targetname="init_maven">      <!--      remembertosetM2_REPObeforeusethisbuild.xml,forexampleineclispe:      "Window→Preferences→Ant→Runtime",addanewpropertynamed"M2_REPO"andsetitvaluepointtothepathofyourmaven      localrepository;Oryoucansetitinbuild.properties. Youneeddoone(andonlyone)ofthem.      -->      <pathid="maven-ant-tasks.classpath"path="${M2_REPO}/org/apache/maven/maven-ant-tasks/2.0.9/maven-ant-tasks-2.0.9.jar"/>      <typedefresource="org/apache/maven/artifact/ant/antlib.xml"uri="urn:maven-artifact-ant"classpathref="maven-ant-tasks.classpath"/>      <artifact:pomid="maven.project"file="pom.xml"/>      <artifact:dependenciespathId="classpath.build"filesetid="maven.fileset.build">        <pomrefid="maven.project"/>      </artifact:dependencies>      <artifact:dependenciespathId="classpath.runtime"filesetid="maven.fileset.runtime"useScope="runtime">        <pomrefid="maven.project"/>      </artifact:dependencies>    </target>    <targetname="all"depends="init_path,compile,jar,package,zip"description="doall">      <echo>begintodoalltargettobuildtheresultpackage.</echo>    </target>    <targetname="maven_info"depends="init_maven">      <echo>Mavenbuilddirectoryis${maven.project.build.directory}</echo>      <echo>MavenbuildfinalNameis${maven.project.build.finalNam

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号