You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by "Gundapu, Srinivasa (MBS)" <Sr...@mortgagefamily.com> on 2003/03/17 21:05:02 UTC

dist does not exist

Hello guys, need some help. Just started using ant.
This is my build file which is included at the last.

I am getting this error..... saying dist does not exist
H:\Projects\las>ant
Buildfile: build.xml

BUILD FAILED
Target `dist' does not exist in this project.

Total time: 1 second
H:\Projects\las>

<project name="las" default="dist" basedir="H:/Projects">
  <target name="init">
	<property name="project" value="las" />
	<property name="src" location="${basedir}/${project}/src/" />
	<property name="build" location="${basedir}/${project}/classes" />
	<property name="dist" location="${basedir}/${project}/dist" />
  </target>
</project>