blob: 9afdc3438b3d7f6e3bbbd40ba09bd4eb87922f5f [file] [log] [blame]
<!DOCTYPE project [
<!--
Copyright (c) 2017, 2022 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
-->
<!ENTITY commonSetup SYSTEM "./../../../../../../config/properties.xml">
<!ENTITY commonBuild SYSTEM "./../../../../../../config/common.xml">
<!ENTITY testproperties SYSTEM "./build.properties">
]>
<project name="jms-injection-wsApp" default="all" basedir=".">
&commonSetup;
&commonBuild;
&testproperties;
<target name="all" depends="clean,build,create-resources,deploy,build-client,run,undeploy,delete-resources"/>
<target name="clean" depends="init-common">
<antcall target="clean-common"/>
</target>
<target name="clean-classes-dir">
<delete dir="${build.classes.dir}"/>
</target>
<target name="compile-ejb" depends="init-common">
<antcall target="clean-classes-dir"/>
<antcall target="compile-common">
<param name="src" value="ejb"/>
</antcall>
</target>
<target name="compile-web" depends="init-common">
<antcall target="clean-classes-dir"/>
<antcall target="compile-common">
<param name="src" value="servlet"/>
</antcall>
</target>
<target name="compile-client" depends="init-common">
<antcall target="compile-common">
<param name="src" value="client"/>
</antcall>
</target>
<target name="build-ejb" depends="compile-ejb">
<antcall target="ejb-jar-common"/>
</target>
<target name="build-web" depends="compile-web">
<property name="hasWebclient" value="yes"/>
<antcall target="webclient-war-common"/>
</target>
<target name="build-ear">
<delete file="${assemble.dir}/${appname}.ear"/>
<mkdir dir="${assemble.dir}"/>
<mkdir dir="${build.classes.dir}/META-INF"/>
<copy file="${sun-application.xml}" tofile="${build.classes.dir}/META-INF/sun-application.xml" failonerror="false"/>
<copy file="${application.xml}" tofile="${build.classes.dir}/META-INF/application.xml" failonerror="false"/>
<copy file="${glassfish-resources-ear.xml}" tofile="${build.classes.dir}/META-INF/glassfish-resources.xml" failonerror="false" filtering="true"/>
<jar jarfile="${assemble.dir}/${appname}App.ear">
<fileset dir="${assemble.dir}">
<include name="*.jar"/>
<include name="*.war"/>
</fileset>
<fileset dir="${build.classes.dir}">
<include name="META-INF/sun-application.xml"/>
<include name="META-INF/application.xml"/>
<include name="META-INF/glassfish-resources.xml"/>
</fileset>
<fileset dir="${env.APS_HOME}" includes="lib/reporter.jar"/>
</jar>
</target>
<target name="build" depends="build-ejb, build-web, build-ear"/>
<target name="set-wscompile" >
<condition property="wscompile" value="${env.S1AS_HOME}/bin/wscompile.bat">
<os family="windows"/>
</condition>
<condition property="wscompile" value="${env.S1AS_HOME}/bin/wscompile">
<not>
<os family="windows"/>
</not>
</condition>
</target>
<target name="run.wscompile" depends="set-wscompile">
<exec executable="${wscompile}" failonerror="true" >
<arg line="-source 1.1.2 ${wscompile.command}" />
</exec>
</target>
<target name="build-client" depends="clean">
<delete file="${appclient.jar}"/>
<antcall target="compile-ejb"/>
<antcall target="generateWSConfig"/>
<mkdir dir="${build.classes.dir}/META-INF"/>
<copy file="${application-client.xml}"
tofile="${build.classes.dir}/META-INF/application-client.xml"
failonerror="false"/>
<copy file="${glassfish-application-client.xml}" tofile="${build.classes.dir}/META-INF/glassfish-application-client.xml"
failonerror="false"/>
<copy file="${sun-application-client.xml}" tofile="${build.classes.dir}/META-INF/sun-application-client.xml"
failonerror="false"/>
<antcall target="run.wscompile">
<param name="wscompile.command" value="-gen -cp ${build.classes.dir} -keep -d ${build.classes.dir} config.xml"/>
</antcall>
<antcall target="compile-client"/>
<jar jarfile="${appclient.jar}" basedir="${appclientjar.files}"
update="true" includes ="**/*.class"
manifest="./client/MANIFEST.MF">
<metainf dir="${build.classes.dir}/META-INF">
<include name="application-client.xml"/>
<include name="glassfish-application-client.xml"/>
<include name="sun-application-client.xml"/>
</metainf>
</jar>
</target>
<target name="create-resources" depends="init-common">
<antcall target="asadmin-batch-common">
<param name="asadmin.file" value="create_resources.asadmin"/>
</antcall>
</target>
<target name="delete-resources" depends="init-common">
<antcall target="asadmin-batch-common">
<param name="asadmin.file" value="delete_resources.asadmin"/>
</antcall>
</target>
<target name="deploy" depends="init-common">
<antcall target="deploy-common"/>
</target>
<target name="generateWSConfig" depends="compile-ejb">
<java fork="on"
failonerror="true"
classpath="${env.S1AS_HOME}/lib/jakartaee.jar:${build.classes.dir}:${env.APS_HOME}/lib/reporter.jar:${env.APS_HOME}/lib/reportbuilder.jar"
classname="org.glassfish.test.jms.injection.ejb.GenerateWSConfig">
<sysproperty key="org.omg.CORBA.ORBInitialPort" value="${orb.port}"/>
<arg value="config.xml"/>
<arg value="${http.host}"/>
<arg value="${http.port}"/>
</java>
</target>
<target name="run" depends="init-common">
<java fork="on"
failonerror="true"
classpath="${env.S1AS_HOME}/lib/jakartaee.jar:${env.S1AS_HOME}/lib/gf-client.jar:${assemble.dir}/${appname}-client.jar:${env.APS_HOME}/lib/reporter.jar:${env.APS_HOME}/lib/reportbuilder.jar"
classname="WsTest">
<sysproperty key="org.omg.CORBA.ORBInitialPort" value="${orb.port}"/>
<arg value="${http.host}"/>
<arg value="${http.port}"/>
<arg value="${contextroot}"/>
</java>
</target>
<target name="undeploy" depends="init-common">
<antcall target="undeploy-common"/>
</target>
<target name="usage">
<antcall target="usage-common"/>
</target>
</project>