blob: 53f9a41c55b47e35be80d910c68f46a793effaa9 [file] [log] [blame]
<?xml version="1.0" ?>
<!DOCTYPE project [
<!ENTITY properties SYSTEM "../../../xmls/properties.xml">
<!ENTITY paths SYSTEM "../../../xmls/path_refs.xml">
<!ENTITY taskdefs SYSTEM "../../../xmls/taskdefs.xml">
<!ENTITY taskdefs_post_compile SYSTEM "../../../xmls/taskdefs_post_compile.xml">
<!ENTITY targets SYSTEM "../../../xmls/targets.xml">
]>
<!-- ===================================================================
<description>
Test/Sample Component file for Axis
Notes:
This is a build file for use with the Jakarta Ant build tool.
Prerequisites:
jakarta-ant from http://jakarta.apache.org
Build Instructions:
To compile
ant compile
To execute
ant run
Author:
Matt Seibert mseibert@us.ibm.com
Copyright:
Copyright (c) 2002-2003 Apache Software Foundation.
</description>
==================================================================== -->
<project default="compile">
<property name="axis.home" location="../../.." />
<property name="componentName" value="test/wsdl/uddiv2" />
&properties;
&paths;
&taskdefs;
&taskdefs_post_compile;
&targets;
<target name="clean">
<echo message="Removing ${build.dir}/classes/${componentName} and ${build.dir}/work/${componentName}" />
<delete dir="${build.dir}/classes/${componentName}"/>
<delete dir="${build.dir}/work/${componentName}"/>
</target>
<target name="copy" depends="setenv"/>
<target name="compile" depends="copy">
<echo message="Compiling test.wsdl.uddiv2"/>
<!-- local version of the WSDL -->
<wsdl2java url="${axis.home}/test/wsdl/uddiv2/uddi_v2.wsdl"
output="${axis.home}/build/work"
verbose="no"
serverSide="no"
wrapArrays="true"
testcase="yes">
<mapping namespace="urn:uddi-org" package="test.wsdl.uddiv2"/>
<mapping namespace="urn:uddi-org:inquiry_v2" package="test.wsdl.uddiv2.inquiry_v2"/>
<mapping namespace="urn:uddi-org:api_v2" package="test.wsdl.uddiv2.api_v2"/>
</wsdl2java>
<copy todir="${build.dir}/work/test/wsdl/uddiv2" overwrite="yes">
<fileset dir="${axis.home}/test/wsdl/uddiv2">
<include name="*TestCase.java"/>
</fileset>
</copy>
<javac srcdir="${build.dir}/work" destdir="${build.dest}" nowarn="${nowarn}" source="${source}" fork="${javac.fork}"
debug="${debug}">
<classpath refid="classpath" />
<include name="test/wsdl/uddiv2/*.java" />
</javac>
</target>
<target name="run" >
<antcall target="execute-Component-noServer" />
</target>
</project>