当前位置: 代码迷 >> Java相关 >> build.xml
  详细解决方案

build.xml

热度:934   发布时间:2006-09-21 10:35:04.0
build.xml
我的工程想用ant 打包,可是build.xml总出错,有哪位可以帮帮我
搜索更多相关的解决方案: xml  build  

----------------解决方案--------------------------------------------------------

我添加附件可以吗


----------------解决方案--------------------------------------------------------
如果友人可以看到附件中的我的工程框架,帮助我build.xml,发到我邮箱amin_8248@163.com 不胜感激
----------------解决方案--------------------------------------------------------

看不到你的帖子附件


----------------解决方案--------------------------------------------------------
不知道应该如何在论坛里添加,所以用邮箱附件传给你,谢谢,你帮我看一下,如何写build.xml文件,我写的总是不对,要生成war 文件
是这个地址吧:libinfeng1982@sohu.com
----------------解决方案--------------------------------------------------------
哦,你是版主哦,我有救啦,我写了好久了
----------------解决方案--------------------------------------------------------
你要写那个文件干嘛啊
----------------解决方案--------------------------------------------------------
你要写那个文件干嘛啊

----------------解决方案--------------------------------------------------------
build.xml是IDE帮你生成的,不用你去管的
你直接项目打包,它会自动帮你生成WAR文件的
你用的是Eclipse吧
开发JSP用NetBeans更好一些,你可以尝试使用一下
----------------解决方案--------------------------------------------------------

哦,我没有找到可以生成war文件的材料,我刚才试了一下,系统生成build.xml后,怎么办?
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE project [<!ENTITY buildfile SYSTEM "file:./build-user.xml">]>
<!-- WARNING: Eclipse autogenerated file.
Any modifications will be overwritten.
Please edit build-user.xml instead.
-->
<project basedir="." default="build" name="dailyReport">
&buildfile;
<property name="dailyReport.location" value="C:/Documents and Settings/Administrator/workspace1/dailyReport"/>
<path id="project.classpath">
<pathelement location="webroot/WEB-INF/classes"/>
<pathelement location="${dailyReport.location}/webroot/WEB-INF/lib/commons-beanutils-1.6.1.jar"/>
<pathelement location="${dailyReport.location}/webroot/WEB-INF/lib/commons-codec-1.2.jar"/>
<pathelement location="${dailyReport.location}/webroot/WEB-INF/lib/commons-collections-3.0.jar"/>
<pathelement location="${dailyReport.location}/webroot/WEB-INF/lib/commons-digester-1.5.jar"/>
<pathelement location="${dailyReport.location}/webroot/WEB-INF/lib/commons-el.jar"/>
<pathelement location="${dailyReport.location}/webroot/WEB-INF/lib/commons-fileupload-1.0.jar"/>
<pathelement location="${dailyReport.location}/webroot/WEB-INF/lib/commons-logging.jar"/>
<pathelement location="${dailyReport.location}/webroot/WEB-INF/lib/commons-validator.jar"/>
<pathelement location="${dailyReport.location}/webroot/WEB-INF/lib/jakarta-oro.jar"/>
<pathelement location="${dailyReport.location}/webroot/WEB-INF/lib/jstl.jar"/>
<pathelement location="${dailyReport.location}/webroot/WEB-INF/lib/myfaces.jar"/>
<pathelement location="${dailyReport.location}/webroot/WEB-INF/lib/jsp-2.0.jar"/>
<pathelement location="E:/eclipse/eclipse/startup.jar"/>
<pathelement location="E:/eclipse/eclipse/postgresql-8.0-312.jdbc3.jar"/>
<pathelement location="E:/eclipse/eclipse/servlet.jar"/>
<pathelement location="E:/eclipse/eclipse/log4j-1.2.8.jar"/>
<pathelement location="D:/eclipse/FileUploadBean.jar"/>
<pathelement location="D:/eclipse/activation.jar"/>
<pathelement location="D:/eclipse/log4j-1.2.8.jar"/>
<pathelement location="D:/eclipse/mail.jar"/>
</path>
<target name="init">
<mkdir dir="webroot/WEB-INF/classes"/>
</target>
<target name="clean">
<delete dir="webroot/WEB-INF/classes"/>
</target>
<target depends="init" name="build">
<echo message="${ant.project.name}: ${ant.file}"/>
<javac destdir="webroot/WEB-INF/classes">
<src path="src"/>
<classpath refid="project.classpath"/>
</javac>
</target>
</project>
是的,我要把我的工程打包,怎么做呢,我找不到相关资料哟


----------------解决方案--------------------------------------------------------
  相关解决方案