forked from marcesher/org.mxunit.eclipseplugin
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathGenStubs.xml
More file actions
39 lines (27 loc) · 1.47 KB
/
GenStubs.xml
File metadata and controls
39 lines (27 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<project name="GenStubs" basedir=".">
<target name="genStubs">
<property name="local.wsdl" value="http://localhost/mxunit/framework/RemoteFacade.cfc?wsdl" />
<property name="local.obd.wsdl" value="http://localhost:8090/mxunit/framework/RemoteFacade.cfc?wsdl" />
<property name="generated.dir" location="src" />
<property name="generated.obd.dir" location="${generated.dir}" />
<property name="package" value="org.mxunit.eclipseplugin.actions.bindings.generated" />
<property name="package.obd" value="${package}.bluedragon" />
<path id="axis.classpath">
<fileset dir="lib">
<include name="*.jar" />
</fileset>
</path>
<taskdef resource="axis-tasks.properties" classpathref="axis.classpath" />
<mkdir dir="${generated.dir}" />
<mkdir dir="${generated.obd.dir}" />
<axis-wsdl2java output="${generated.dir}" testcase="true" verbose="true" url="${local.wsdl}">
<mapping namespace="http://framework.mxunit" package="${package}" />
<mapping namespace="http://rpc.xml.coldfusion" package="${package}" />
<mapping namespace="http://xml.apache.org/xml-soap" package="${package}" />
</axis-wsdl2java>
<axis-wsdl2java output="${generated.obd.dir}" testcase="true" verbose="true" url="${local.obd.wsdl}">
<mapping namespace="http://mxunit/framework/RemoteFacade.cfc" package="${package.obd}" />
<mapping namespace="http://wstypes.newatlanta.com" package="${package.obd}" />
</axis-wsdl2java>
</target>
</project>