| <?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="ejb31" default="usage" basedir="."> |
| &commonSetup; |
| &commonBuild; |
| &reporting; |
| |
| <target name="lite"> |
| <antcall target="ejblite"/> |
| <antcall target="embedded-lite"/> |
| </target> |
| |
| <target name="all"> |
| <antcall target="ejblite"/> |
| <antcall target="full"/> |
| <antcall target="singleton"/> |
| <antcall target="asynchronous"/> |
| <antcall target="timer31"/> |
| <antcall target="security"/> |
| <!-- <antcall target="embedded"/>--> |
| </target> |
| |
| <target name="ejblite"> |
| <record name="ejblite.output" action="start" /> |
| <ant dir="ejblite" target="all"/> |
| <record name="ejblite.output" action="stop" /> |
| </target> |
| |
| <target name="full"> |
| <record name="full.output" action="start" /> |
| <ant dir="full" target="all"/> |
| <record name="full.output" action="stop" /> |
| </target> |
| |
| <target name="singleton"> |
| <record name="singleton.output" action="start" /> |
| <ant dir="singleton" target="all"/> |
| <record name="singleton.output" action="stop" /> |
| </target> |
| |
| <target name="asynchronous"> |
| <record name="asynchronous.output" action="start" /> |
| <ant dir="asynchronous" target="all"/> |
| <record name="asynchronous.output" action="stop" /> |
| </target> |
| |
| <target name="timer31"> |
| <record name="timer31.output" action="start" /> |
| <ant dir="timer31" target="all"/> |
| <record name="timer31.output" action="stop" /> |
| </target> |
| |
| <target name="security"> |
| <record name="security.output" action="start" /> |
| <ant dir="security" target="all"/> |
| <record name="security.output" action="stop" /> |
| </target> |
| |
| <target name="embedded"> |
| <record name="embedded.output" action="start" /> |
| <ant dir="embedded" target="all"/> |
| <record name="embedded.output" action="stop" /> |
| </target> |
| |
| <target name="embedded-lite"> |
| <record name="embedded.output" action="start" /> |
| <ant dir="embedded" target="lite"/> |
| <record name="embedded.output" action="stop" /> |
| </target> |
| |
| <target name="usage"> |
| <echo> |
| Usage: |
| ant all (Executes all the ejb-ejb31 tests) |
| </echo> |
| </target> |
| </project> |