ANT学习1

<?xml version="1.0" encoding="UTF-8"?>
<project name="myAntProject" basedir="." default="package" >
<property name="hello" value="hello123"></property>
<property name="word" value="word123"></property>
<property name="compile" value="compile"></property>
<property name="dist" value="dist"></property>
<target name="init"></target>
<target name="preprocess" depends="init">
<!-- <mkdir dir="${hello}"/>
<mkdir dir="${word}"/>

--><mkdir dir="${compile}"/>
<mkdir dir="${dist}"/>
</target>
<target name="compile" depends="init,preprocess">


</target>
<target name="package" depends="compile">
</target>
<target name="myCompile" depends="preprocess">
<javac srcdir="src" destdir="${compile}" ></javac>
</target>
<target name="dist" depends="myCompile"></target>
<jar destfile="${dist}/package.jar" basedir="${compile}">
<manifest file="">
<attribute name="Built-By" value="${user.name}"/>>
<attribute name="Main-Class" value="com.test.Test3"/>
</manifest>
</jar>

</project>

--------------------------------------------------------

<?xml version="1.0" encoding="utf-8"?>
<project default="second">
<description>
hello world
</description>
<property name="hello" value="welcome"/>
<property name="dabase-file"
location="archive\database\${hello}.db"
/>
<target name="init" description="hello world">
<mkdir dir = "helloworld"/>
<mkdir dir ="hello"/>
<mkdir dir ="world"/>
<mkdir dir ="${hello}"/>
</target>
<target name="preprocess" description="1hello world">
</target>
<target name="second" depends="init,preprocess">
<delete dir = "helloworld"/>
<delete dir ="hello"/>
<delete dir ="world"/>
<delete dir ="welcome"/>
</target>
<target name="package" depends="second">
</target>


</project>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值