http://www.ant-tasks.com/
Apache Ant Archive
»
Ant Users List
»
Ant Developers List
dist does not exist
dist does not exist
2003-03-17 - By Gundapu, Srinivasa (MBS)
Reply: 1
2
3
4
5
6
7
8
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>
©2008 ant-tasks.com - Jax Systems, LLC, U.S.A.