blob: fc64ccc81c784bdb909bb9738da02c23d200c33d [file] [log] [blame]
<?xml version="1.0" encoding="ISO-8859-1"?>
<!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 reporting SYSTEM "../../../report.xml">
]>
<project name="jms-injection-jmsContext-basic-request" default="usage" basedir=".">
&commonSetup;
&commonBuild;
&reporting;
<target name="all">
<antcall target="sessionBeanRequestScoped"/>
<antcall target="ejbInterceptorRequestScoped"/>
<antcall target="servletRequestScoped"/>
<antcall target="jspRequestScoped"/>
<!--antcall target="jsfRequestScoped"/-->
<antcall target="wsRequestScoped"/>
<antcall target="sessionBeanTransactionScoped"/>
<antcall target="ejbInterceptorTransactionScoped"/>
<antcall target="servletTransactionScoped"/>
<antcall target="jspTransactionScoped"/>
<!--antcall target="jsfTransactionScoped"/-->
<antcall target="wsTransactionScoped"/>
</target>
<target name="sessionBeanRequestScoped">
<record name="sessionBeanRequestScoped.output" action="start" />
<ant dir="sessionBeanRequestScoped" target="all"/>
<record name="sessionBeanRequestScoped.output" action="stop" />
</target>
<target name="ejbInterceptorRequestScoped">
<record name="ejbInterceptorRequestScoped.output" action="start" />
<ant dir="ejbInterceptorRequestScoped" target="all"/>
<record name="ejbInterceptorRequestScoped.output" action="stop" />
</target>
<target name="servletRequestScoped">
<record name="servletRequestScoped.output" action="start" />
<ant dir="servletRequestScoped" target="all"/>
<record name="servletRequestScoped.output" action="stop" />
</target>
<target name="jspRequestScoped">
<record name="jspRequestScoped.output" action="start" />
<ant dir="jspRequestScoped" target="all"/>
<record name="jspRequestScoped.output" action="stop" />
</target>
<target name="jsfRequestScoped">
<record name="jsfRequestScoped.output" action="start" />
<ant dir="jsfRequestScoped" target="all"/>
<record name="jsfRequestScoped.output" action="stop" />
</target>
<target name="wsRequestScoped">
<record name="wsRequestScoped.output" action="start" />
<ant dir="wsRequestScoped" target="all"/>
<record name="wsRequestScoped.output" action="stop" />
</target>
<target name="sessionBeanTransactionScoped">
<record name="sessionBeanTransactionScoped.output" action="start" />
<ant dir="sessionBeanTransactionScoped" target="all"/>
<record name="sessionBeanTransactionScoped.output" action="stop" />
</target>
<target name="ejbInterceptorTransactionScoped">
<record name="ejbInterceptorTransactionScoped.output" action="start" />
<ant dir="ejbInterceptorTransactionScoped" target="all"/>
<record name="ejbInterceptorTransactionScoped.output" action="stop" />
</target>
<target name="servletTransactionScoped">
<record name="servletTransactionScoped.output" action="start" />
<ant dir="servletTransactionScoped" target="all"/>
<record name="servletTransactionScoped.output" action="stop" />
</target>
<target name="jspTransactionScoped">
<record name="jspTransactionScoped.output" action="start" />
<ant dir="jspTransactionScoped" target="all"/>
<record name="jspTransactionScoped.output" action="stop" />
</target>
<target name="jsfTransactionScoped">
<record name="jsfTransactionScoped.output" action="start" />
<ant dir="jsfTransactionScoped" target="all"/>
<record name="jsfTransactionScoped.output" action="stop" />
</target>
<target name="wsTransactionScoped">
<record name="wsTransactionScoped.output" action="start" />
<ant dir="wsTransactionScoped" target="all"/>
<record name="wsTransactionScoped.output" action="stop" />
</target>
<target name="usage">
<echo>
Usage:
ant all (Executes all the jms tests)
</echo>
</target>
</project>