xref: /trunk/main/test/java/test-tools/build.xml (revision 19ee18fd)
1*19ee18fdSDamjan Jovanovic<?xml version="1.0" encoding="UTF-8"?>
2*19ee18fdSDamjan Jovanovic<!--***********************************************************
3be9e621aSdamjan *
4be9e621aSdamjan * Licensed to the Apache Software Foundation (ASF) under one
5be9e621aSdamjan * or more contributor license agreements.  See the NOTICE file
6be9e621aSdamjan * distributed with this work for additional information
7be9e621aSdamjan * regarding copyright ownership.  The ASF licenses this file
8be9e621aSdamjan * to you under the Apache License, Version 2.0 (the
9be9e621aSdamjan * "License"); you may not use this file except in compliance
10be9e621aSdamjan * with the License.  You may obtain a copy of the License at
11be9e621aSdamjan *
12be9e621aSdamjan *   http://www.apache.org/licenses/LICENSE-2.0
13be9e621aSdamjan *
14be9e621aSdamjan * Unless required by applicable law or agreed to in writing,
15be9e621aSdamjan * software distributed under the License is distributed on an
16be9e621aSdamjan * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17be9e621aSdamjan * KIND, either express or implied.  See the License for the
18be9e621aSdamjan * specific language governing permissions and limitations
19be9e621aSdamjan * under the License.
20be9e621aSdamjan *
21*19ee18fdSDamjan Jovanovic ***********************************************************-->
22be9e621aSdamjan
23be9e621aSdamjan
24*19ee18fdSDamjan Jovanovic
25*19ee18fdSDamjan Jovanovic<project name="test-tools" default="main" basedir=".">
26be9e621aSdamjan
27*19ee18fdSDamjan Jovanovic    <property file="../../../ant.properties"/>
28*19ee18fdSDamjan Jovanovic    <import file="${SRC_ROOT}/solenv/ant/aoo-ant.xml"/>
29be9e621aSdamjan
30*19ee18fdSDamjan Jovanovic    <target name="init-project">
31*19ee18fdSDamjan Jovanovic        <path id="main.classpath">
32*19ee18fdSDamjan Jovanovic            <pathelement location="${OUTDIR}/bin/juh.jar"/>
33*19ee18fdSDamjan Jovanovic            <pathelement location="${OUTDIR}/bin/ridl.jar"/>
34*19ee18fdSDamjan Jovanovic            <pathelement location="${OUTDIR}/bin/unoil.jar"/>
35*19ee18fdSDamjan Jovanovic            <pathelement location="${OOO_JUNIT_JAR}"/>
36*19ee18fdSDamjan Jovanovic        </path>
37*19ee18fdSDamjan Jovanovic    </target>
38be9e621aSdamjan
39*19ee18fdSDamjan Jovanovic</project>
40be9e621aSdamjan
41