1 <?xml version="1.0" encoding="UTF-8"?>
3 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 Copyright 2008 by Sun Microsystems, Inc.
7 OpenOffice.org - a multi-platform office productivity suite
9 $RCSfile: build.xml,v $
13 This file is part of OpenOffice.org.
15 OpenOffice.org is free software: you can redistribute it and/or modify
16 it under the terms of the GNU Lesser General Public License version 3
17 only, as published by the Free Software Foundation.
19 OpenOffice.org is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU Lesser General Public License version 3 for more details
23 (a copy is included in the LICENSE file that accompanied this code).
25 You should have received a copy of the GNU Lesser General Public License
26 version 3 along with OpenOffice.org. If not, see
27 <http://www.openoffice.org/license.html>
28 for a copy of the LGPLv3 License.
31 <project name="xmrg_util" default="main" basedir=".">
33 <property file="../source/inc/antbuild.properties"/>
35 <property name="javadoc.dir" location="${build.dir}/javadoc"/>
37 <property environment="env"/>
38 <property name="env.XML_APIS_JAR" value="${solar.jar}/xml-apis.jar"/>
39 <property name="env.XERCES_JAR" value="${solar.jar}/xercesImpl.jar"/>
42 <pathelement location="${env.XML_APIS_JAR}"/>
43 <pathelement location="${env.XERCES_JAR}"/>
44 <pathelement location="${solar.jar}/unoil.jar"/>
45 <pathelement location="${solar.jar}/ridl.jar"/>
46 <pathelement location="${solar.jar}/jurt.jar"/>
47 <pathelement location="${solar.jar}/juh.jar"/>
48 <pathelement location="${build.dir}/xmerge.jar"/>
52 <mkdir dir="${javadoc.dir}"/>
55 <!-- build javadoc -->
56 <target name="javadoc" depends="init">
57 <javadoc destdir="${javadoc.dir}"
61 nodeprecatedlist="true"
63 Doctitle="OpenOffice XMerge API"
64 windowtitle="OpenOffice XMerge API"
65 classpathref="classpath">
66 <fileset dir="../source/bridge" defaultexcludes="yes">
67 <include name="**/*.java"/>
69 <fileset dir="../source/xmerge" defaultexcludes="yes">
70 <include name="**/*.java"/>
72 <fileset dir="../source/aportisdoc" defaultexcludes="yes">
73 <include name="**/*.java"/>
75 <fileset dir="../source/pexcel" defaultexcludes="yes">
76 <include name="**/*.java"/>
78 <fileset dir="../source/pocketword" defaultexcludes="yes">
79 <include name="**/*.java"/>
81 <link offline="true" href="http://java.sun.com/j2se/1.3/docs/api" packagelistLoc="${solar.doc}/jdk13"/>
82 <bottom><![CDATA[<i>Copyright © 2002 OpenOffice.org</i>]]></bottom>
83 <header><![CDATA[<b>OpenOffice.org<br>XMerge API</b>]]></header>
87 <target name="main" depends="javadoc">
90 <target name="all" depends="javadoc">
94 <delete file="${javadoc.dir}"/>