-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
91 lines (77 loc) · 2.18 KB
/
Copy pathbuild.xml
File metadata and controls
91 lines (77 loc) · 2.18 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?xml version="1.0" encoding="gbk"?>
<project name="wasu" default="compile">
<!-- ¶ÁÈëÅäÖÃÎļþ -->
<property name="build.properties" value="build.properties"/>
<property file="${build.properties}"/>
<patternset id="jarfiles">
<include name="*.jar"/>
<include name="*.zip"/>
</patternset>
<path id="classpath">
<fileset dir="${lib}/ext">
<patternset refid="jarfiles"/>
</fileset>
</path>
<path id="conf">
<fileset dir="conf">
</fileset>
</path>
<path id="allclasspath">
<path refid="classpath"/>
<path refid="conf"/>
</path>
<taskdef resource="axis-tasks.properties" classpathref="classpath" />
<target name="compile">
<mkdir dir="${build}"/>
<javac srcdir="${src}"
encoding="GBK"
destdir="${build}"
deprecation="yes"
debug="yes"
>
<classpath refid="classpath"/>
</javac>
</target>
<target name="build" depends="compile">
<delete file="${mainJar}"/>
<delete dir="${build}/package cache"/>
<jar jarfile="${mainJar}"
compress="yes">
<fileset dir="${build}"/>
</jar>
</target>
<target name="clean">
<delete file="${mainJar}"/>
<delete dir="${build}"/>
</target>
<target name="axis-admin">
<axis-admin
port="${webservicePort}"
hostname="${webserviceHost}"
failonerror="true"
servletpath="/webservices/AdminService"
debug="true"
xmlfile="conf/deploy.wsdd"
/>
</target>
<target name="axis-j2w">
<axis-java2wsdl
output="test.wsdl"
location="http://localhost/axis/services/TestService"
classname="com.renhenet.modules.member.webservice.TestServer"
>
<classpath refid="allclasspath"/>
</axis-java2wsdl>
</target>
<target name="axis-wsdl2java">
<axis-wsdl2java
output="${src}"
testcase="true"
verbose="true"
url="search.wsdl" >
<mapping
namespace="http://222.46.18.49:8080/webservices/searchwebservice"
package="com.renhenet.search" />
</axis-wsdl2java>
</target>
</project>