blob: 32a704aa60a388981033d83b90b2a77cf06e1db0 [file] [log] [blame]
Vinay Vishal57171472018-09-18 20:22:00 +05301<?xml version="1.0"?>
2<!--
3
4 Copyright (c) 2017, 2018 Oracle and/or its affiliates. All rights reserved.
5
6 This program and the accompanying materials are made available under the
7 terms of the Eclipse Public License v. 2.0, which is available at
8 http://www.eclipse.org/legal/epl-2.0.
9
10 This Source Code may also be made available under the following Secondary
11 Licenses when the conditions for such availability set forth in the
12 Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
13 version 2 with the GNU Classpath Exception, which is available at
14 https://www.gnu.org/software/classpath/license.html.
15
16 SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
17
18-->
19
20<!DOCTYPE project [
21<!ENTITY commonSetup SYSTEM "file:./../../../../config/properties.xml">
22<!ENTITY commonBuild SYSTEM "file:./../../../../config/common.xml">
23<!ENTITY commonRun SYSTEM "file:./../../../../config/run.xml">
24<!ENTITY jaxwsTools SYSTEM "file:./../jaxwstools.xml">
25<!ENTITY testproperties SYSTEM "file:./build.properties">
26]>
27
28<project name="endpointaddress" default="all" basedir=".">
29
30 &commonSetup;
31 &commonBuild;
32 &commonRun;
33 &testproperties;
34 &jaxwsTools;
35
36 <target name="all" depends="clean, setup, runclient, undeploy"/>
37
38 <target name="clean" depends="init-common">
39 <antcall target="clean-common"/>
40 </target>
41
42 <target name="setup" depends="assemble-web, deploy-app, assemble-client"/>
43
44 <target name="compile" depends="init-common">
45 <antcall target="compile-common">
46 <param name="src" value="endpoint"/>
47 </antcall>
48 </target>
49
50 <target name="assemble-web" depends="init-common, compile">
51 <antcall target="pkg-war">
52 <param name="war.classes" value="${build.classes.dir}"/>
53 <param name="war.file" value="${assemble.dir}/${appname}-web.war"/>
54 </antcall>
55 </target>
56
57 <target name="assemble-client" depends="init-common">
58 <antcall target="compile-client">
59 <param name="test-wsdl-uri" value="${appname}/HelloService?WSDL"/>
60 <param name="client-src" value="client"/>
61 </antcall>
62 </target>
63
64 <target name="deploy-app">
65 <antcall target="deploy-war-common">
66 <param name="contextroot" value="${appname}"/>
67 </antcall>
68 </target>
69
70 <target name="restart-test">
71 <antcall target="restart-server-instance-common"/>
72 <antcall target="runclient"/>
73 </target>
74
75 <target name="undeploy" depends="init-common">
76 <antcall target="undeploy-war-common"/>
77 </target>
David Matějčekf4dc06a2021-05-17 12:10:57 +020078
Vinay Vishal57171472018-09-18 20:22:00 +053079 <target name="runclient" depends="init-common">
80 <mkdir dir="${build.classes.dir}/client"/>
81 <javac srcdir="." destdir="${build.classes.dir}/client"
82 classpath="${env.APS_HOME}/lib/reporter.jar"
83 includes="client/**"/>
84 <unjar src="${env.APS_HOME}/lib/reporter.jar" dest="${build.classes.dir}/client"/>
85 <java classname="client.Client">
86 <classpath>
87 <pathelement path="${build.classes.dir}/client"/>
88 </classpath>
89 <arg value="http://${http.host}:${http.port}/endpointaddress/HelloService"/>
90 </java>
91 </target>
92
93</project>
94