blob: 365d19071867f8a7aaebfd768b6897da24d7bf3e [file] [log] [blame]
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE project [
<!--
Copyright (c) 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 "file:./../../../../config/properties.xml">
<!ENTITY commonBuild SYSTEM "file:./../../../../config/common.xml">
<!ENTITY eeCommonBuild SYSTEM "file:./../../../../config/ee-common.xml">
<!ENTITY testproperties SYSTEM "file:./build.properties">
]>
<project name="ee-notification" default="usage" basedir=".">
&commonSetup;
&commonBuild;
&eeCommonBuild;
&testproperties;
<target name="all" depends="setup-cluster, run-tests, remove-cluster"/>
<target name="setup-cluster" depends="init-common">
<antcall target="setup-default-cluster-common"/>
<antcall target="start-default-cluster-common"/>
</target>
<target name="run-tests" depends="setup-cluster">
<antcall target="lookup">
<param name="lookup.target" value="all"/>
</antcall>
</target>
<target name="lookup">
<record name="lookup.output" action="start"/>
<ant dir="lookup" target="${lookup.target}"/>
<record name="lookup.output" action="stop"/>
</target>
<target name="remove-cluster" depends="init-common">
<antcall target="stop-default-cluster-common"/>
<antcall target="remove-default-cluster-common"/>
</target>
<target name="usage">
<antcall target="usage-common"/>
</target>
</project>