blob: 81fd240a30b545a0c7b9c8ed3d878f7a123d4d55 [file] [log] [blame]
<!--
Copyright (c) 2002, 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
-->
<!DOCTYPE project [
<!ENTITY common SYSTEM "../../../../../../config/common.xml">
<!ENTITY props SYSTEM "../../../../../../config/properties.xml">
]>
<project name="app-scoped-resources RA SRC" default="all" basedir=".">
<!-- include common.xml and testcommon.xml -->
&common;
&props;
<target name="all" depends="init-common" >
<antcall target="compile-common">
<param name="build.classes.dir" value="classes" />
<param name="src" value="connector" />
</antcall>
<jar jarfile="../generic-ra.jar" basedir="classes"
includes="connector/*.class" />
</target>
<target name="clean">
<antcall target="clean-classes-common">
<param name="build.classes.dir" value="classes" />
</antcall>
<delete file="../generic-ra.jar"/>
<delete file="../generic-ra.rar"/>
</target>
</project>