summaryrefslogtreecommitdiff
path: root/swext/mediawiki/build.xml
diff options
context:
space:
mode:
authorMikhail Voitenko <mav@openoffice.org>2008-02-11 12:25:15 +0000
committerMikhail Voitenko <mav@openoffice.org>2008-02-11 12:25:15 +0000
commitcb3ae0d19b4db03ddb0e602ebf813f67cad46970 (patch)
treeb4043c2da82dae3fbff49fcb990298c3be266611 /swext/mediawiki/build.xml
parent04b02af33b58679d8300a10a13dca900c0ea9568 (diff)
change build.xml
Diffstat (limited to 'swext/mediawiki/build.xml')
-rw-r--r--swext/mediawiki/build.xml17
1 files changed, 12 insertions, 5 deletions
diff --git a/swext/mediawiki/build.xml b/swext/mediawiki/build.xml
index c9e65269d64f..33e213545cfe 100644
--- a/swext/mediawiki/build.xml
+++ b/swext/mediawiki/build.xml
@@ -5,9 +5,9 @@
*
* $RCSfile: build.xml,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: rene $ $Date: 2008-02-04 09:02:13 $
+ * last change: $Author: mav $ $Date: 2008-02-11 13:25:15 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -35,13 +35,14 @@
************************************************************************ -->
<project default="all">
<target name="init">
+ <property environment="env"/>
<property name="ext" value="oxt"/>
<property name="officeroot" value="/export/home/mav/OFFICES/OOG680/m5_netbeans_pro"/>
<property name="office.home" value="${officeroot}"/>
<!-- fallbacks for locations, when solenv is not used -->
- <condition property="prjname" value="wikiaddon">
- <not><isset property="prjname"/></not>
+ <condition property="target" value="wikiaddon">
+ <not><isset property="target"/></not>
</condition>
<condition property="out" value="./build">
<not><isset property="out"/></not>
@@ -103,7 +104,13 @@
<target name="uno-package" depends="jar, init">
<delete file="${dist}/${name}.${ext}"/>
<zip destfile="${dist}/${name}.${ext}">
- <fileset dir="src" includes="**/*.xcu,**/*.xcs,**/*.xml" excludes="uno-extension-manifest.xml" casesensitive="yes"/>
+ <fileset dir="src" includes="description.xml" casesensitive="yes"/>
+ <fileset dir="${out}/misc/${target}/registry/schema/org/openoffice/Office/Custom" includes="*.xcs" casesensitive="yes"/>
+ <fileset dir="${out}/misc/${target}/registry/data/org/openoffice/Office/Custom" includes="*.xcu" casesensitive="yes"/>
+ <fileset dir="${out}/misc/${target}/registry/data/org/openoffice/Office" includes="*.xcu" casesensitive="yes"/>
+ <fileset dir="${out}/misc/${target}/merge/org/openoffice/Office/Custom" includes="*.xcu" casesensitive="yes"/>
+ <fileset dir="${out}/misc/${target}/merge/org/openoffice/Office" includes="*.xcu" casesensitive="yes"/>
+ <fileset dir="${out}/misc/${target}" includes="**/*.xhp" casesensitive="yes"/>
<fileset dir="${dist}" includes="${name}.jar" casesensitive="yes"/>
<fileset dir="." includes="images/**,templates/**" casesensitive="yes"/>
<file file="${commons-codec-jar}"/>