blob: 91c45cbf295d4e97b29c08a1a030aee6887bbc23 [file] [log] [blame]
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
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
-->
<!-- Security Testsuites -->
<!-- Author: jagadesh.munta@sun.com -->
<!DOCTYPE project [
<!ENTITY commonSetup SYSTEM "./../../../../config/properties.xml">
<!ENTITY commonBuild SYSTEM "./../../../../config/common.xml">
]>
<project name="connector" default="usage" basedir=".">
&commonSetup;
&commonBuild;
<target name="all">
<record name="connector.output" action="start"/>
<ant dir="cci" target="all"/>
<ant dir="cci-embedded" target="all"/>
<record name="connector.output" action="stop"/>
</target>
<target name="usage">
<antcall target="usage-common"/>
</target>
<target name="clean" depends="init-common">
<ant dir="cci" target="clean"/>
<ant dir="cci-embedded" target="clean"/>
<record name="connector.output" action="stop"/>
</target>
<target name="setup" depends="init-common">
<ant dir="cci" target="setup"/>
<ant dir="cci-embedded" target="setup"/>
</target>
<target name="run-test" depends="init-common">
<ant dir="cci" target="run-test"/>
<ant dir="cci-embedded" target="run-test"/>
</target>
<target name="unsetup" depends="init-common">
<ant dir="cci" target="unsetup"/>
<ant dir="cci-embedded" target="unsetup"/>
</target>
<target name="build">
<ant dir="cci" target="build"/>
<ant dir="cci-embedded" target="build"/>
</target>
<target name="deploy">
<ant dir="cci" target="deploy"/>
<ant dir="cci-embedded" target="deploy"/>
</target>
<target name="undeploy">
<ant dir="cci" target="undeploy"/>
<ant dir="cci-embedded" target="undelpoy"/>
</target>
<target name="run" depends="">
<ant dir="cci" target="run"/>
<ant dir="cci-embedded" target="run"/>
</target>
<!-- custom targets -->
<target name="cci" depends="">
<ant dir="cci" target="all"/>
</target>
<target name="cci-embedded" depends="">
<ant dir="cci-embedded" target="all"/>
</target>
</project>