Your Ad Here
首页 | 编程语言 | 网站建设 | 游戏天堂 | 冲浪宝典 | 网络安全 | 操作系统 | 软件时空 | 硬件指南 | 病毒相关 | IT 认证
软讯网络 > 编程语言 > Java > Sample of build.xml
【标  题】:Sample of build.xml
【关键字】:Sample,of,build.xml
【来  源】:http://www.cublog.cn/u/15509/showart.php?id=119416

Sample of build.xml

Your Ad Here <project name="MyProject" default="dist" basedir=".">

        <!-- set global properties for this build -->
        <property name="src" value="."/>
        <property name="build" value="build"/>
        <property name="dist" value="dist"/>
    
        <target name="init">
                <!-- Create the time stamp -->
                <tstamp/>
                <!-- Create the build directory structure used by compile -->
                <mkdir dir="${build}"/>
        </target>
         
        <target name="compile" depends="init">
                <!-- Compile the java code from ${src} into ${build} -->
                <javac srcdir="${src}" destdir="${build}"/>
        </target>
       
        <target name="dist" depends="compile">
                <!-- Create the distribution directory -->
                <mkdir dir="${dist}/lib"/>
                <!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
                <jar jarfile="${dist}/lib/MyProject-${DSTAMP}.jar" basedir="${build}"/>
        </target>
       
        <target name="clean">
                <!-- Delete the ${build} and ${dist} directory trees -->
                <delete dir="${build}"/>
                <delete dir="${dist}"/>
        </target>
       
</project>
java语法熟悉题(zz):【上一篇】
事件监听机制:【下一篇】
【相关文章】
  • Oracle学习笔记(2)-Profiles
  • Primary view of Solaris 10
  • PrefixList of WebRequest (Code review for System.Net.Webrequest)
  • office weekly21(2006-05-21~27)
  • configure the logging of Denied Traffic to a FG
  • fileplace Command -Displays the placement of file
  • Tips for dual m3ua stacks configuration of OC3.3
  • SDL for SAMPLE(zip)
  • SDL Sample 2
  • The Unofficial Fedora FAQ
  • 【随机文章】
  • 本站DataGrid一些文章的索引,方便查找
  • 一段PHP随机代码:随机数字+英文
  • int ,string and ViewState
  • 常用的SQL和T-SQL语句(二)
  • 对顶级门户网站架构的分析
  • 使用 FDisk 创建分区
  • Authorware中插入视频
  • 为Linux 安装套件强化系统安全
  • 从Access数据库恢复BMP图像并显示在WEB页面(microsoft)
  • “曲线”登陆hotmail邮箱 解你燃眉之急
  • 【相关评论】
    没有相关评论
    【发表评论】
    姓名:
    邮件:
    随机码*
    评论*
          
    |  首 页  |  版权声明  |  联系我们   |  网站地图  |
    CopyRight © 2004-2007 bbb软讯网络 All Rigths Reserved.