~ubuntu-branches/debian/squeeze/axis/squeeze

« back to all changes in this revision

Viewing changes to test/wsdl/interop3/rpcEnc/build.xml

  • Committer: Bazaar Package Importer
  • Author(s): Vladimír Lapáček
  • Date: 2006-09-06 22:31:39 UTC
  • Revision ID: james.westby@ubuntu.com-20060906223139-l7m5edxeositeppl
Tags: upstream-1.4
Import upstream version 1.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<!DOCTYPE project [
 
3
        <!ENTITY properties SYSTEM "file:../../../../xmls/properties.xml">
 
4
        <!ENTITY paths  SYSTEM "file:../../../../xmls/path_refs.xml">
 
5
        <!ENTITY taskdefs SYSTEM "file:../../../../xmls/taskdefs.xml">
 
6
        <!ENTITY taskdefs_post_compile SYSTEM "file:../../../../xmls/taskdefs_post_compile.xml">
 
7
        <!ENTITY targets SYSTEM "file:../../../../xmls/targets.xml">
 
8
]>
 
9
 
 
10
<!-- ===================================================================
 
11
<description>
 
12
   Test/Sample Component file for Axis
 
13
 
 
14
Notes:
 
15
   This is a build file for use with the Jakarta Ant build tool.
 
16
 
 
17
Prerequisites:
 
18
 
 
19
   jakarta-ant from http://jakarta.apache.org
 
20
 
 
21
Build Instructions:
 
22
   To compile
 
23
        ant compile
 
24
   To execute
 
25
        ant run
 
26
 
 
27
Author:
 
28
  Matt Seibert mseibert@us.ibm.com
 
29
 
 
30
Copyright:
 
31
  Copyright (c) 2002-2003 Apache Software Foundation.
 
32
</description>
 
33
==================================================================== -->
 
34
 
 
35
<project name="Round3" default="main">
 
36
<property name="axis.home" location="../../../.." />
 
37
<property name="componentName" value="test/wsdl/interop3/rpcEnc" />
 
38
        &properties;
 
39
        &paths;
 
40
        &taskdefs;
 
41
        &taskdefs_post_compile;
 
42
        &targets;
 
43
  <property name="root.dir" value="../../../.."/>
 
44
 
 
45
  <path id="test-classpath">
 
46
    <pathelement location="${build.dest}" />
 
47
    <pathelement path="${java.class.path}" />
 
48
    <pathelement location="${java.home}/../lib/tools.jar"/>
 
49
    <fileset dir="${root.dir}/lib">
 
50
      <include name="*.jar"/>
 
51
    </fileset>
 
52
  </path>
 
53
 
 
54
  <target name="clean">
 
55
        <echo message="Removing ${build.dir}/classes/${componentName} and ${build.dir}/work/${componentName}" />
 
56
        <delete dir="${build.dir}/classes/${componentName}"/>
 
57
        <delete dir="${build.dir}/work/${componentName}"/>
 
58
  </target>
 
59
  
 
60
  
 
61
  <target name="main">
 
62
    <property name="testname" value="rpcEnc"/>
 
63
 
 
64
    <!-- generate skeletons -->
 
65
    <!-- <wsdl2java url="http://www.whitemesa.com/r3/InteropTestRpcEnc.wsdl" -->
 
66
    <wsdl2java url="${axis.home}/test/wsdl/interop3/${testname}/InteropTestRpcEnc.wsdl"
 
67
               output="${axis.home}/build/work" skeletonDeploy="no"
 
68
               serverSide="yes"/>
 
69
 
 
70
    <mkdir dir="${build.dest}"/>
 
71
 
 
72
    <copy file="WSDLInteropTestRpcEncPortBindingImpl.java" overwrite="true"
 
73
          todir="${build.dir}/work/test/wsdl/interop3/${testname}"/>
 
74
 
 
75
    <copy file="RpcEncTestCase.java" overwrite="true"
 
76
          todir="${build.dir}/work/test/wsdl/interop3/${testname}"/>
 
77
 
 
78
    <!-- compile the skeletons -->
 
79
    <javac srcdir="${build.dir}/work" 
 
80
      destdir="${build.dest}" debug="on" source="${source}" nowarn="${nowarn}">
 
81
      <classpath refid="test-classpath" />
 
82
      <include name="test/wsdl/interop3/${testname}/*.java" />
 
83
    </javac>
 
84
  </target>
 
85
 
 
86
</project>