blob: 783991dfe38fe6a3e2f7f14baebb71867827c2ee [file] [log] [blame]
Vinay Vishal57171472018-09-18 20:22:00 +05301<!--
2
3 Copyright (c) 2002, 2018 Oracle and/or its affiliates. All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v. 2.0, which is available at
7 http://www.eclipse.org/legal/epl-2.0.
8
9 This Source Code may also be made available under the following Secondary
10 Licenses when the conditions for such availability set forth in the
11 Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
12 version 2 with the GNU Classpath Exception, which is available at
13 https://www.gnu.org/software/classpath/license.html.
14
15 SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
16
17-->
18
19<!DOCTYPE project [
20 <!ENTITY common SYSTEM "../../../../../config/common.xml">
21 <!ENTITY props SYSTEM "../../../../../config/properties.xml">
22]>
23
24<project name="connector1.5 RA SRC" default="all" basedir=".">
25
26
27 <!-- include common.xml and testcommon.xml -->
28 &common;
29 &props;
30
31 <target name="all" depends="init-common" >
32 <antcall target="compile-common">
David Matějčekf4dc06a2021-05-17 12:10:57 +020033 <param name="build.classes.dir" value="classes" />
34 <param name="src" value="connector" />
Vinay Vishal57171472018-09-18 20:22:00 +053035 </antcall>
36 <jar jarfile="../generic-ra.jar" basedir="classes"
37 includes="connector/*.class" />
38 </target>
39
40
41 <target name="clean">
42 <antcall target="clean-classes-common">
43 <param name="build.classes.dir" value="classes" />
44 </antcall>
45 <delete file="../generic-ra.jar"/>
46 <delete file="../generic-ra.rar"/>
47 </target>
48
49</project>