| <!DOCTYPE project [ |
| <!-- |
| |
| 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 |
| |
| --> |
| |
| <!ENTITY commonSetup SYSTEM "./../../../../../../config/properties.xml"> |
| <!ENTITY commonBuild SYSTEM "./../../../../../../config/common.xml"> |
| <!ENTITY testproperties SYSTEM "./build.properties"> |
| ]> |
| |
| <project name="jms-injection-jspApp" default="all" basedir="."> |
| |
| &commonSetup; |
| &commonBuild; |
| &testproperties; |
| |
| <target name="all" depends="clean,build,create-resources,deploy,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-ejb"/> |
| <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-client" depends="compile-client"> |
| <delete file="${appclient.jar}"/> |
| <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"/> |
| <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="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-client, build-ear"/> |
| |
| <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="run" depends="init-common"> |
| <java fork="on" |
| failonerror="true" |
| classpath="${env.S1AS_HOME}/lib/javaee.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="WebTest"> |
| <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> |