blob: 246cfedf3c06671b11625f09a8a5be48046e8dcd [file] [log] [blame]
<?xml version="1.0" encoding="ISO-8859-1"?>
<!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="ejb32-intrfaces-App" default="usage" basedir=".">
&commonSetup;
&commonBuild;
&testproperties;
<target name="all" depends="clean,build,deploy,run,undeploy,deploy-neg"/>
<target name="clean" depends="init-common">
<antcall target="clean-common"/>
</target>
<target name="compile" depends="clean,precompile">
<antcall target="compile-common">
<param name="src" value="ejb"/>
</antcall>
<javac fork="true" includeAntRuntime="false"
classpath="${env.APS_HOME}/lib/reportbuilder.jar:${build.classes.dir}:${env.APS_HOME}/lib/reporter.jar:${s1as.classpath}"
destdir="${build.classes.dir}" debug="true" srcdir="client" includes="**/*.java">
<classpath path="${classpath}"/>
</javac>
</target>
<target name="precompile" depends="init-common">
<ant dir="${env.APS_HOME}/devtests/admin/cli" target="build"/>
<copy todir="${build.classes.dir}">
<fileset dir="${env.APS_HOME}/devtests/admin/cli/build"/>
</copy>
</target>
<target name="build" depends="compile">
<antcall target="ejb-jar-common">
<param name="ejbjar.classes"
value="**/S*.class" />
</antcall>
<move file="${assemble.dir}/${appname}-ejb.jar" tofile="${assemble.dir}/${appname}-ejb2.jar"/>
<antcall target="ejb-jar-common">
<param name="ejbjar.classes"
value="**/S*.class" />
</antcall>
<antcall target="ear-common"/>
</target>
<target name="build-neg">
<antcall target="ejb-jar-common">
<param name="ejbjar.excludes.classes"
value="**/S*EJB*.class,**/S*Bean*.class" />
</antcall>
</target>
<target name="deploy"
depends="init-common">
<antcall target="deploy-common"/>
</target>
<target name="deploy-neg" depends="init-common">
<antcall target="build-neg">
<param name="ejbjar.classes"
value="**/S*.class,**/Neg*1.class" />
</antcall>
<antcall target="run">
<param name="client.type" value="deploy-fail" />
<param name="ejb.jar" value="${assemble.dir}/${appname}-ejb.jar"/>
<param name="index" value="1" />
</antcall>
<antcall target="build-neg">
<param name="ejbjar.classes"
value="**/S*.class,**/Neg*2.class" />
</antcall>
<antcall target="run">
<param name="client.type" value="deploy-fail" />
<param name="ejb.jar" value="${assemble.dir}/${appname}-ejb.jar"/>
<param name="index" value="2" />
</antcall>
</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:${build.classes.dir}:${env.APS_HOME}/lib/reporter.jar:${env.APS_HOME}/lib/reportbuilder.jar"
classname="${se.client}">
<arg line="${client.type}"/>
<arg line="${ejb.jar}"/>
<arg line="${index}"/>
<jvmarg value="--add-opens=java.base/java.lang=ALL-UNNAMED" />
<sysproperty key="org.omg.CORBA.ORBInitialPort" value="${orb.port}"/>
</java>
</target>
<target name="undeploy" depends="init-common">
<antcall target="undeploy-common"/>
</target>
<target name="usage">
<antcall target="usage-common"/>
</target>
</project>