Hi santosh

<?xml version="1.0"?>
<project name="Test" default="compile" basedir=".">
------------(2) (missed beginning target stmt )
<property name="src" value="."/>
<property name="build" value="bin"/>
<property name="classpath" value="..\sdktest.jar"/>
----------(1)   (missed closing target stmt)
<target name="init">
<tstamp/>
<mkdir dir="${build}"/>
</target>
<target name="compile" depends="init">
<javac srcdir="${src}" destdir="${build}" classpath="${classpath}"/>
</target>
</project>



Hope this will help u

Bala


Reply via email to