blob: 20c6aecc9113a2f11e2b237d13c068b5bb5ab59f [file] [log] [blame]
<?xml version="1.0"?>
<!--
Copyright (c) 2017, 2018 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
http://www.eclipse.org/legal/epl-2.0.
This Source Code may also be made available under the following Secondary
Licenses when the conditions for such availability set forth in the
Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
version 2 with the GNU Classpath Exception, which is available at
https://www.gnu.org/software/classpath/license.html.
SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
-->
<!DOCTYPE project [
<!ENTITY commonSetup SYSTEM "file:./../../../../config/properties.xml">
<!ENTITY commonBuild SYSTEM "file:./../../../../config/common.xml">
<!ENTITY jaxwsTools SYSTEM "file:./../jaxwstools.xml">
<!ENTITY testproperties SYSTEM "file:./build.properties">
]>
<project name="wsdltojava" default="all" basedir=".">
&commonSetup;
&commonBuild;
&testproperties;
&jaxwsTools;
<target name="all" depends="clean, setup, runtest, undeploy" />
<target name="clean" depends="init-common">
<antcall target="clean-common" />
</target>
<target name="setup" depends="assemble-web, deploy-app, assemble-client" />
<target name="compile" depends="init-common">
<antcall target="compile-common">
<param name="src" value="service" />
</antcall>
</target>
<target name="run-wsimport">
<mkdir dir="${build.classes.dir}" />
<replace file="HttpTestService.wsdl" value="${http.host}" token="HTTP_HOST" />
<replace file="HttpTestService.wsdl" value="${http.port}" token="HTTP_PORT" />
<antcall target="wsimport">
<param name="wsimport.args"
value="-wsdllocation WEB-INF/wsdl/HttpTestService.wsdl -keep -b customservice.xml -d ${build.classes.dir} HttpTestService.wsdl"
/>
</antcall>
</target>
<target name="assemble-web" depends="init-common, run-wsimport, compile">
<antcall target="pkg-war">
<param name="wsdlfile.location" value="." />
<param name="wsdlfile.name" value="HttpTestService.wsdl" />
<param name="war.classes" value="${build.classes.dir}" />
<param name="war.file" value="${assemble.dir}/${appname}-web.war" />
</antcall>
</target>
<target name="assemble-client" depends="init-common">
<mkdir dir="${build.classes.dir}/client" />
<echo message="wsimporting localWSDL" />
<antcall target="wsimport">
<param name="wsimport.args"
value="-keep -wsdllocation ${env.APS_HOME}/devtests/webservice/annotations/wsdltojava/HttpTestService.wsdl -b customclient.xml -d ${build.classes.dir}/client HttpTestService.wsdl"
/>
</antcall>
<javac srcdir="."
destdir="${build.classes.dir}/client"
classpath="${env.APS_HOME}/lib/reporter.jar:${env.S1AS_HOME}/lib/javaee.jar:${env.S1AS_HOME}/modules/webservices-osgi.jar"
includes="client/**"
/>
</target>
<target name="deploy-app">
<antcall target="deploy-war-common">
<param name="contextroot" value="${appname}" />
</antcall>
</target>
<target name="undeploy" depends="init-common">
<antcall target="undeploy-war-common" />
</target>
<target name="runtest">
<antcall target="run-client">
<param name="client-class" value="client.Client" />
<param name="other-args" value="basic-wsdl-to-java-test-case" />
</antcall>
<!--restore the tokens back in file-->
<replace file="HttpTestService.wsdl" token="${http.host}" value="HTTP_HOST" />
<replace file="HttpTestService.wsdl" token="${http.port}" value="HTTP_PORT" />
</target>
</project>