I'm a newbie trying to use ant to build code needed for some VoyenceControl
apps. I've installed ant and axis and attempt to execute ant –f build.xml as
instructed and I get the following:

F:\VoyenceControl>ant –f build.xml
Buildfile: build.xml
Warning: Reference classpath.build has not been set at runtime, but was
found during
build file parsing, attempting to resolve. Future versions of Ant may
support
 referencing ids defined in non-executed targets.

BUILD FAILED
Target "ûf" does not exist in the project "null".

Total time: 0 seconds

I can't figure out what my problem is. Any help would be appreciated. My XML
file is :

<?xml version="1.0" ?>
<project default="generate.java">
<property name="axis.home" location="D:\axis-1_4"/>
<taskdef resource="axis-tasks.properties" classpathref="classpath.build"/>
<path id="classpath.build">
<fileset dir="${axis.home}/lib">
<include name="*.jar"/>
</fileset>
</path>
<target name="generate.java" description="Generates client side files from
WSDL document">
<mkdir dir="src"/>
<axis-wsdl2java
url="http://cscvoyence.utc.com:8881/ws/api/40/services/ApiService?wsdl";
output="src">
<mapping namespace="Urn:ApiService"
package="com.powerup.configmgr.server.services.api"/>
</axis-wsdl2java>
</target>
<target name="clean" description="Cleans existing source directory">
<delete dir="src"/>
<delete dir="classes"/>
</target>
<target name="compile.gen.src" description="Compiles generated source code">
<mkdir dir="classes"/>
<javac srcdir="src"
destdir="classes" deprecation="on" fork="yes"
memoryMaximumSize="256m" encoding="cp1252" debug="on">
<include name="**/*.java" />
<classpath refid="classpath.build" />
</javac>
</target>
</project>
-- 
View this message in context: 
http://www.nabble.com/Target-%22%C3%BBf%22-does-not-exist-in-the-project-%22null%22.-tp22181547p22181547.html
Sent from the Ant - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@ant.apache.org
For additional commands, e-mail: user-h...@ant.apache.org

Reply via email to