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