Skip to content
This repository was archived by the owner on Nov 15, 2022. It is now read-only.

Commit cba7a2a

Browse files
naman223arindam-bandyopadhyay
authored andcommitted
NoBug:Moving connector to the appserver/tests/appserv-tests/devtests folder. (#21977)
1 parent a568924 commit cba7a2a

File tree

4,327 files changed

+241554
-192424
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,327 files changed

+241554
-192424
lines changed
Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
<?xml version="1.0" encoding="ISO-8859-1"?>
2+
<!--
3+
4+
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
5+
6+
Copyright (c) 2017 Oracle and/or its affiliates. All rights reserved.
7+
8+
The contents of this file are subject to the terms of either the GNU
9+
General Public License Version 2 only ("GPL") or the Common Development
10+
and Distribution License("CDDL") (collectively, the "License"). You
11+
may not use this file except in compliance with the License. You can
12+
obtain a copy of the License at
13+
https://oss.oracle.com/licenses/CDDL+GPL-1.1
14+
or LICENSE.txt. See the License for the specific
15+
language governing permissions and limitations under the License.
16+
17+
When distributing the software, include this License Header Notice in each
18+
file and include the License file at LICENSE.txt.
19+
20+
GPL Classpath Exception:
21+
Oracle designates this particular file as subject to the "Classpath"
22+
exception as provided by Oracle in the GPL Version 2 section of the License
23+
file that accompanied this code.
24+
25+
Modifications:
26+
If applicable, add the following below the License Header, with the fields
27+
enclosed by brackets [] replaced by your own identifying information:
28+
"Portions Copyright [year] [name of copyright owner]"
29+
30+
Contributor(s):
31+
If you wish your version of this file to be governed by only the CDDL or
32+
only the GPL Version 2, indicate your decision by adding "[Contributor]
33+
elects to include this software in this distribution under the [CDDL or GPL
34+
Version 2] license." If you don't indicate a single choice of license, a
35+
recipient has the option to distribute your version of this file under
36+
either the CDDL, the GPL Version 2 or to extend the choice of license to
37+
its licensees as provided above. However, if you add GPL Version 2 code
38+
and therefore, elected the GPL Version 2 license, then the option applies
39+
only if the new code is made subject to such option by the copyright
40+
holder.
41+
42+
-->
43+
44+
<!-- Security Testsuites -->
45+
<!-- Author: [email protected] -->
46+
47+
<!DOCTYPE project [
48+
<!ENTITY commonSetup SYSTEM "./../../../config/properties.xml">
49+
<!ENTITY commonBuild SYSTEM "./../../../config/common.xml">
50+
]>
51+
52+
<project name="connector" default="usage" basedir=".">
53+
54+
&commonSetup;
55+
&commonBuild;
56+
57+
<target name="all" >
58+
<record name="connector.output" action="start"/>
59+
<ant dir="cci" target="all" />
60+
<ant dir="cci-embedded" target="all" />
61+
<record name="connector.output" action="stop"/>
62+
</target>
63+
64+
<target name="usage">
65+
<antcall target="usage-common"/>
66+
</target>
67+
68+
<target name="clean" depends="init-common">
69+
<ant dir="cci" target="clean" />
70+
<ant dir="cci-embedded" target="clean" />
71+
<record name="connector.output" action="stop"/>
72+
</target>
73+
74+
<target name="setup" depends="init-common">
75+
<ant dir="cci" target="setup" />
76+
<ant dir="cci-embedded" target="setup" />
77+
</target>
78+
79+
<target name="run-test" depends="init-common">
80+
<ant dir="cci" target="run-test" />
81+
<ant dir="cci-embedded" target="run-test" />
82+
</target>
83+
84+
<target name="unsetup" depends="init-common">
85+
<ant dir="cci" target="unsetup" />
86+
<ant dir="cci-embedded" target="unsetup" />
87+
</target>
88+
89+
<target name="build">
90+
<ant dir="cci" target="build" />
91+
<ant dir="cci-embedded" target="build" />
92+
</target>
93+
94+
<target name="deploy">
95+
<ant dir="cci" target="deploy" />
96+
<ant dir="cci-embedded" target="deploy" />
97+
</target>
98+
99+
<target name="undeploy">
100+
<ant dir="cci" target="undeploy" />
101+
<ant dir="cci-embedded" target="undelpoy" />
102+
</target>
103+
104+
<target name="run" depends="">
105+
<ant dir="cci" target="run" />
106+
<ant dir="cci-embedded" target="run" />
107+
</target>
108+
109+
<!-- custom targets -->
110+
<target name="cci" depends="">
111+
<ant dir="cci" target="all" />
112+
</target>
113+
114+
<target name="cci-embedded" depends="">
115+
<ant dir="cci-embedded" target="all" />
116+
</target>
117+
</project>

0 commit comments

Comments
 (0)