Source Code : In init target set the properties
Java Is Open Source Programming Language You Can Download From Java and Java Libraries From http://www.oracle.com.
Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://www.oracle.com.
Click Here or search from google with Libraries Name you get jar file related it
In init target set the properties
<project name="YourName" default="all">
<target name="all" depends="init,clean,compile,createJars,copyBuild" >
</target>
<target name="init" description="Project">
<property environment="env" />
<property name="j2sdkApi" value="${env.JAVA_HOME}/jre/lib/rt.jar" />
<property name="src" value="./src" />
<property name="build" value= "./build" />
</target>
<target name="clean" description="build" depends="init">
<delete dir="${build}" />
<mkdir dir="${build}" />
</target>
<target name="compile" description="compile" depends="init">
<javac srcdir="${src}" destdir="${build}" >
<classpath path="${j2sdkApi}" />
<include name="**/application/**"/>
<include name="**/types/**"/>
</javac>
</target>
<target name="copyBuild" description="desccription here">
<copy file="${src}/LOGOUNB_CAPA.JPG" todir="${build}/" />
<copydir src="${src}/config" dest="${build}/config" />
</target>
<target name="createJars" description="jars" depends="compile">
<mkdir dir="${build}/xml/jar"/>
<jar jarfile="${build}/br/xml/jar/xpfg.jar"
basedir="${build}/unb/cic/xml" />
<manifest file="manifest.mf">
<attribute name="Main-Class" value="${build}/br/unb/cic/xml/XMLMain" />
</manifest>
</target>
</project>
Thank with us