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