blob: 2aeaaaa446537e682126da5b3b4dd398ea0dbe1a [file] [log] [blame]
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
Copyright (c) 2010, 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
-->
<project name="osgi-cdi-test" default="usage" basedir=".">
<property name="osgi-cdi-target" value="all"/>
<target name="run-test">
<antcall target="osgi-cdi">
<param name="osgi-cdi-target" value="run-test"/>
</antcall>
</target>
<target name="all">
<antcall target="osgi-cdi">
<param name="osgi-cdi-target" value="all"/>
</antcall>
</target>
<target name="clean">
<antcall target="osgi-cdi">
<param name="osgi-cdi-target" value="clean"/>
</antcall>
</target>
<target name="build">
<antcall target="osgi-cdi">
<param name="osgi-cdi-target" value="build"/>
</antcall>
</target>
<target name="setup">
<antcall target="osgi-cdi">
<param name="osgi-cdi-target" value="setup"/>
</antcall>
</target>
<target name="deploy">
<antcall target="osgi-cdi">
<param name="osgi-cdi-target" value="deploy"/>
</antcall>
</target>
<target name="undeploy">
<antcall target="osgi-cdi">
<param name="osgi-cdi-target" value="undeploy"/>
</antcall>
</target>
<target name="unsetup">
<antcall target="osgi-cdi">
<param name="osgi-cdi-target" value="unsetup"/>
</antcall>
</target>
<target name="run">
<antcall target="osgi-cdi">
<param name="osgi-cdi-target" value="run"/>
</antcall>
</target>
<target name="osgi-cdi">
<record name="osgi-cdi.output" action="start" />
<ant dir="simple-wab-with-cdi" target="${osgi-cdi-target}"/>
<record name="osgi-cdi.output" action="stop" />
</target>
<target name="usage">
<echo> Usage:
ant all (Executes all the osgi-cdi tests)
ant clean (cleans all the osgi-cdi tests)
ant build (builds all the osgi-cdi tests)
ant setup (sets up all resources for osgi-cdi tests)
ant deploy (deploys all the osgi-cdi apps)
ant run (Executes all the osgi-cdi tests)
ant undeploy (undeploys all the osgi-cdi apps)
ant unsetup (unsets all resources for osgi-cdi tests)
</echo>
</target>
</project>