-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathtest.xml
More file actions
56 lines (41 loc) · 1.29 KB
/
test.xml
File metadata and controls
56 lines (41 loc) · 1.29 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
<?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 [email protected]
Copyright:
Copyright (c) 2002-2003 Apache Software Foundation.
</description>
==================================================================== -->
<project default="compile">
<property name="axis.home" location=".." />
<property name="componentName" value="tools/ant" />
&properties;
&paths;
&taskdefs;
&taskdefs_post_compile;
&targets;
<target name="clean"/>
<target name="copy" depends="setenv,clean"/>
<target name="compile" depends="copy">
<echo message="Testing Tools"/>
</target>
<target name="run" />
</project>