Index: accessodf/accessodf-api/build.xml
===================================================================
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
+++ accessodf/accessodf-api/build.xml	2013-12-26 15:10:00.446340610 +0100
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!-- ====================================================================== -->
+<!-- Ant build file (http://ant.apache.org/) for Ant 1.6.2 or above.        -->
+<!-- ====================================================================== -->
+
+<project name="accessodf-api" default="package" basedir=".">
+
+  <!-- ====================================================================== -->
+  <!-- Import maven-build.xml into the current project                        -->
+  <!-- ====================================================================== -->
+
+  <import file="maven-build.xml"/>
+  
+  <!-- ====================================================================== -->
+  <!-- Help target                                                            -->
+  <!-- ====================================================================== -->
+
+  <target name="help">
+    <echo message="Please run: $ant -projecthelp"/>
+  </target>
+
+</project>
Index: accessodf/accessodf-api/maven-build.properties
===================================================================
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
+++ accessodf/accessodf-api/maven-build.properties	2013-12-26 15:10:00.450340626 +0100
@@ -0,0 +1,20 @@
+#Generated by Maven Ant Plugin - DO NOT EDIT THIS FILE!
+#Fri Oct 11 20:06:32 CEST 2013
+maven.settings.offline=true
+maven.build.finalName=accessodf-api-0.1.0
+maven.build.resourceDir.0=src/main/resources
+maven.build.testOutputDir=${maven.build.dir}/test-classes
+maven.build.testResourceDir.0=src/test/resources
+maven.reporting.outputDirectory=${maven.build.dir}/site
+project.build.sourceEncoding=UTF-8
+maven.build.srcDir.0=src/main/java
+project.build.directory=${maven.build.dir}
+maven.test.reports=${maven.build.dir}/test-reports
+maven.build.dir=target
+project.build.outputDirectory=${maven.build.outputDir}
+maven.build.testDir.0=src/test/java
+maven.settings.interactiveMode=true
+maven.repo.local=${user.home}/.m2/repository
+maven.build.outputDir=${maven.build.dir}/classes
+accessodf.version=0.1.0
+openoffice.version=3.3.0
Index: accessodf/accessodf-api/maven-build.xml
===================================================================
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
+++ accessodf/accessodf-api/maven-build.xml	2013-12-26 15:10:00.450340626 +0100
@@ -0,0 +1,204 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- vim:set sts=2 sw=2 ts=2 expandtab -->
+
+<!-- ====================================================================== -->
+<!-- Ant build file (http://ant.apache.org/) for Ant 1.6.2 or above.        -->
+<!-- ====================================================================== -->
+
+<!-- ====================================================================== -->
+<!-- ===================== - DO NOT EDIT THIS FILE! - ===================== -->
+<!-- ====================================================================== -->
+<!--                                                                        -->
+<!-- Any modifications will be overwritten.                                 -->
+<!--                                                                        -->
+<!-- Generated by Maven Ant Plugin on 10/11/13 8:06 PM                      -->
+<!-- See: http://maven.apache.org/plugins/maven-ant-plugin/                 -->
+<!--                                                                        -->
+<!-- ====================================================================== -->
+
+<project name="accessodf-api-from-maven" default="package" basedir=".">
+
+  <!-- ====================================================================== -->
+  <!-- Build environment properties                                           -->
+  <!-- ====================================================================== -->
+
+  <property file="${user.home}/.m2/maven.properties"/>
+  <property file="maven-build.properties"/>
+<property file="../debian.properties"/>
+
+  <property name="maven.build.finalName" value="accessodf-api-0.1.0"/>
+  <property name="maven.build.dir" value="target"/>
+  <property name="maven.build.outputDir" value="${maven.build.dir}/classes"/>
+  <property name="maven.build.srcDir.0" value="src/main/java"/>
+  <property name="maven.build.resourceDir.0" value="src/main/resources"/>
+  <property name="maven.build.testOutputDir" value="${maven.build.dir}/test-classes"/>
+  <property name="maven.build.testDir.0" value="src/test/java"/>
+  <property name="maven.build.testResourceDir.0" value="src/test/resources"/>
+  <property name="maven.test.reports" value="${maven.build.dir}/test-reports"/>
+  <property name="maven.reporting.outputDirectory" value="${maven.build.dir}/site"/>
+
+  <property name="maven.repo.local" value="${user.home}/.m2/repository"/>
+  <property name="maven.settings.offline" value="false"/>
+  <property name="maven.settings.interactiveMode" value="true"/>
+
+  <!-- ====================================================================== -->
+  <!-- Defining classpaths                                                    -->
+  <!-- ====================================================================== -->
+
+  <path id="build.classpath">
+      <pathelement location="${debian.libreoffice.unoil}" />
+      <pathelement location="${debian.libreoffice.juh}" />
+      <pathelement location="${debian.libreoffice.ridl}" />
+      <pathelement location="${debian.libreoffice.ure}" />
+      <pathelement location="${debian.commonscollections}" />
+  </path>
+
+  <pathconvert refid="build.classpath" property="jar.classpath" pathsep=" "/>
+
+  <path id="build.test.classpath"/>
+
+  <!-- ====================================================================== -->
+  <!-- Cleaning up target                                                     -->
+  <!-- ====================================================================== -->
+
+  <target name="clean" description="Clean the output directory">
+    <delete dir="${maven.build.dir}"/>
+  </target>
+
+  <!-- ====================================================================== -->
+  <!-- Compilation target                                                     -->
+  <!-- ====================================================================== -->
+
+  <target name="compile" depends="get-deps" description="Compile the code">
+    <mkdir dir="${maven.build.outputDir}"/>
+    <javac destdir="${maven.build.outputDir}" 
+           nowarn="false" 
+           debug="true" 
+           optimize="false" 
+           deprecation="true" 
+           target="1.6" 
+           verbose="false" 
+           fork="false" 
+           source="1.6">
+      <src>
+        <pathelement location="${maven.build.srcDir.0}"/>
+      </src>
+      <classpath refid="build.classpath"/>
+    </javac>
+  </target>
+
+  <!-- ====================================================================== -->
+  <!-- Test-compilation target                                                -->
+  <!-- ====================================================================== -->
+
+  <target name="compile-tests" 
+          depends="compile" 
+          description="Compile the test code" 
+          unless="maven.test.skip">
+    <mkdir dir="${maven.build.testOutputDir}"/>
+  </target>
+
+  <!-- ====================================================================== -->
+  <!-- Run all tests                                                          -->
+  <!-- ====================================================================== -->
+
+  <target name="test" 
+          depends="compile-tests, junit-missing" 
+          unless="junit.skipped" 
+          description="Run the test cases"/>
+
+  <target name="test-junit-present">
+    <available classname="junit.framework.Test" property="junit.present"/>
+  </target>
+
+  <target name="test-junit-status" 
+          depends="test-junit-present">
+    <condition property="junit.missing">
+      <and>
+        <isfalse value="${junit.present}"/>
+        <isfalse value="${maven.test.skip}"/>
+      </and>
+    </condition>
+    <condition property="junit.skipped">
+      <or>
+        <isfalse value="${junit.present}"/>
+        <istrue value="${maven.test.skip}"/>
+      </or>
+    </condition>
+  </target>
+
+  <target name="junit-missing" 
+          depends="test-junit-status" 
+          if="junit.missing">
+    <echo>=================================== WARNING ===================================</echo>
+    <echo> JUnit is not present in your $ANT_HOME/lib directory. Tests not executed.</echo>
+    <echo>===============================================================================</echo>
+  </target>
+
+  <!-- ====================================================================== -->
+  <!-- Javadoc target                                                         -->
+  <!-- ====================================================================== -->
+
+  <target name="javadoc" description="Generates the Javadoc of the application">
+    <javadoc sourcepath="${maven.build.srcDir.0}" 
+             packagenames="*" 
+             destdir="${maven.reporting.outputDirectory}/apidocs" 
+             access="protected" 
+             old="false" 
+             verbose="false" 
+             version="true" 
+             use="true" 
+             author="true" 
+             splitindex="false" 
+             nodeprecated="false" 
+             nodeprecatedlist="false" 
+             notree="false" 
+             noindex="false" 
+             nohelp="false" 
+             nonavbar="false" 
+             serialwarn="false" 
+             charset="ISO-8859-1" 
+             linksource="false" 
+             breakiterator="false"/>
+  </target>
+
+  <!-- ====================================================================== -->
+  <!-- Package target                                                         -->
+  <!-- ====================================================================== -->
+
+  <target name="package" depends="compile,test" description="Package the application">
+    <jar jarfile="${maven.build.dir}/${maven.build.finalName}.jar" 
+         compress="true" 
+         index="false" 
+         basedir="${maven.build.outputDir}" 
+         excludes="**/package.html">
+         <manifest>
+           <attribute name="Class-Path" value="${jar.classpath}"/>
+         </manifest>
+     </jar>
+  </target>
+
+  <!-- ====================================================================== -->
+  <!-- A dummy target for the package named after the type it creates         -->
+  <!-- ====================================================================== -->
+
+  <target name="jar" depends="package" description="Builds the jar for the application"/>
+
+  <!-- ====================================================================== -->
+  <!-- Download dependencies target                                           -->
+  <!-- ====================================================================== -->
+
+  <target name="test-offline">
+    <condition property="maven.mode.offline">
+      <equals arg1="${maven.settings.offline}" arg2="true"/>
+    </condition>
+  </target>
+
+  <target name="get-deps" 
+          depends="test-offline" 
+          description="Download all dependencies" 
+          unless="maven.mode.offline">
+    <mkdir dir="${maven.repo.local}"/>
+  </target>
+
+</project>
Index: accessodf/build.xml
===================================================================
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
+++ accessodf/build.xml	2013-12-26 15:10:00.450340626 +0100
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!-- ====================================================================== -->
+<!-- Ant build file (http://ant.apache.org/) for Ant 1.6.2 or above.        -->
+<!-- ====================================================================== -->
+
+<project name="accessodf" default="package" basedir=".">
+
+  <!-- ====================================================================== -->
+  <!-- Import maven-build.xml into the current project                        -->
+  <!-- ====================================================================== -->
+
+  <import file="maven-build.xml"/>
+  
+  <!-- ====================================================================== -->
+  <!-- Help target                                                            -->
+  <!-- ====================================================================== -->
+
+  <target name="help">
+    <echo message="Please run: $ant -projecthelp"/>
+  </target>
+
+</project>
Index: accessodf/maven-build.xml
===================================================================
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
+++ accessodf/maven-build.xml	2013-12-26 15:10:00.450340626 +0100
@@ -0,0 +1,74 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!-- ====================================================================== -->
+<!-- Ant build file (http://ant.apache.org/) for Ant 1.6.2 or above.        -->
+<!-- ====================================================================== -->
+
+<!-- ====================================================================== -->
+<!-- ===================== - DO NOT EDIT THIS FILE! - ===================== -->
+<!-- ====================================================================== -->
+<!--                                                                        -->
+<!-- Any modifications will be overwritten.                                 -->
+<!--                                                                        -->
+<!-- Generated by Maven Ant Plugin on 10/11/13 8:06 PM                      -->
+<!-- See: http://maven.apache.org/plugins/maven-ant-plugin/                 -->
+<!--                                                                        -->
+<!-- ====================================================================== -->
+
+<project name="accessodf-from-maven" default="package" basedir=".">
+
+  <!-- ====================================================================== -->
+  <!-- Cleaning up target                                                     -->
+  <!-- ====================================================================== -->
+
+  <target name="clean" description="Clean the output directory">
+    <ant antfile="build.xml" dir="accessodf-api" target="clean"/>
+    <ant antfile="build.xml" dir="accessodf-addon" target="clean"/>
+  </target>
+
+  <!-- ====================================================================== -->
+  <!-- Compilation target                                                     -->
+  <!-- ====================================================================== -->
+
+  <target name="compile" description="Compile the code">
+    <ant antfile="build.xml" dir="accessodf-api" target="compile"/>
+    <ant antfile="build.xml" dir="accessodf-addon" target="compile"/>
+  </target>
+
+  <!-- ====================================================================== -->
+  <!-- Test-compilation target                                                -->
+  <!-- ====================================================================== -->
+
+  <target name="compile-tests" description="Compile the test code">
+    <ant antfile="build.xml" dir="accessodf-api" target="compile-tests"/>
+    <ant antfile="build.xml" dir="accessodf-addon" target="compile-tests"/>
+  </target>
+
+  <!-- ====================================================================== -->
+  <!-- Run all tests                                                          -->
+  <!-- ====================================================================== -->
+
+  <target name="test" description="Run the test cases">
+    <ant antfile="build.xml" dir="accessodf-api" target="test"/>
+    <ant antfile="build.xml" dir="accessodf-addon" target="test"/>
+  </target>
+
+  <!-- ====================================================================== -->
+  <!-- Javadoc target                                                         -->
+  <!-- ====================================================================== -->
+
+  <target name="javadoc" description="Generates the Javadoc of the application">
+    <ant antfile="build.xml" dir="accessodf-api" target="javadoc"/>
+    <ant antfile="build.xml" dir="accessodf-addon" target="javadoc"/>
+  </target>
+
+  <!-- ====================================================================== -->
+  <!-- Package target                                                         -->
+  <!-- ====================================================================== -->
+
+  <target name="package" description="Package the application">
+    <ant antfile="build.xml" dir="accessodf-api" target="package"/>
+    <ant antfile="build.xml" dir="accessodf-addon" target="package"/>
+  </target>
+
+</project>
Index: accessodf/accessodf-addon/build.xml
===================================================================
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
+++ accessodf/accessodf-addon/build.xml	2013-12-26 15:10:00.450340626 +0100
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!-- ====================================================================== -->
+<!-- Ant build file (http://ant.apache.org/) for Ant 1.6.2 or above.        -->
+<!-- ====================================================================== -->
+
+<project name="accessodf-api" default="package" basedir=".">
+
+  <!-- ====================================================================== -->
+  <!-- Import maven-build.xml into the current project                        -->
+  <!-- ====================================================================== -->
+
+  <import file="maven-build.xml"/>
+  
+  <!-- ====================================================================== -->
+  <!-- Help target                                                            -->
+  <!-- ====================================================================== -->
+
+  <target name="help">
+    <echo message="Please run: $ant -projecthelp"/>
+  </target>
+
+</project>
Index: accessodf/accessodf-addon/maven-build.properties
===================================================================
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
+++ accessodf/accessodf-addon/maven-build.properties	2013-12-26 15:10:00.450340626 +0100
@@ -0,0 +1,20 @@
+#Generated by Maven Ant Plugin - DO NOT EDIT THIS FILE!
+#Fri Oct 11 20:06:32 CEST 2013
+maven.settings.offline=false
+maven.build.finalName=accessodf-addon-0.1.0
+maven.build.resourceDir.0=src/main/resources
+maven.build.testOutputDir=${maven.build.dir}/test-classes
+maven.build.testResourceDir.0=src/test/resources
+maven.reporting.outputDirectory=${maven.build.dir}/site
+project.build.sourceEncoding=UTF-8
+maven.build.srcDir.0=src/main/java
+project.build.directory=${maven.build.dir}
+maven.test.reports=${maven.build.dir}/test-reports
+maven.build.dir=target
+project.build.outputDirectory=${maven.build.outputDir}
+maven.build.testDir.0=src/test/java
+maven.settings.interactiveMode=true
+maven.repo.local=${user.home}/.m2/repository
+maven.build.outputDir=${maven.build.dir}/classes
+accessodf.version=0.1.0
+openoffice.version=3.3.0
Index: accessodf/accessodf-addon/maven-build.xml
===================================================================
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
+++ accessodf/accessodf-addon/maven-build.xml	2013-12-26 15:10:51.022591372 +0100
@@ -0,0 +1,206 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!-- ====================================================================== -->
+<!-- Ant build file (http://ant.apache.org/) for Ant 1.6.2 or above.        -->
+<!-- ====================================================================== -->
+
+<!-- ====================================================================== -->
+<!-- ===================== - DO NOT EDIT THIS FILE! - ===================== -->
+<!-- ====================================================================== -->
+<!--                                                                        -->
+<!-- Any modifications will be overwritten.                                 -->
+<!--                                                                        -->
+<!-- Generated by Maven Ant Plugin on 10/11/13 8:06 PM                      -->
+<!-- See: http://maven.apache.org/plugins/maven-ant-plugin/                 -->
+<!--                                                                        -->
+<!-- ====================================================================== -->
+
+<project name="accessodf-api-from-maven" default="package" basedir=".">
+
+<!-- ====================================================================== -->
+<!-- Build environment properties                                           -->
+<!-- ====================================================================== -->
+
+<property file="${user.home}/.m2/maven.properties"/>
+<property file="../debian.properties"/>
+
+<property name="maven.build.finalName" value="accessodf-addon-0.1.0"/>
+<property name="maven.build.dir" value="target"/>
+<property name="maven.build.outputDir" value="${maven.build.dir}/classes"/>
+<property name="maven.build.srcDir.0" value="src/main/java"/>
+<property name="maven.build.resourceDir.0" value="src/main/resources"/>
+<property name="maven.build.testOutputDir" value="${maven.build.dir}/test-classes"/>
+<property name="maven.build.testDir.0" value="src/test/java"/>
+<property name="maven.build.testResourceDir.0" value="src/test/resources"/>
+<property name="maven.test.reports" value="${maven.build.dir}/test-reports"/>
+<property name="maven.reporting.outputDirectory" value="${maven.build.dir}/site"/>
+
+<property name="maven.repo.local" value="${user.home}/.m2/repository"/>
+<property name="maven.settings.offline" value="false"/>
+<property name="maven.settings.interactiveMode" value="true"/>
+
+<!-- ====================================================================== -->
+<!-- Defining classpaths                                                    -->
+<!-- ====================================================================== -->
+
+<path id="build.classpath">
+        <pathelement location="${debian.libreoffice.unoil}" />
+        <pathelement location="${debian.libreoffice.juh}" />
+        <pathelement location="${debian.libreoffice.ridl}" />
+        <pathelement location="${debian.libreoffice.ure}" />
+        <pathelement location="${debian.commonscollections}" />
+        <pathelement location="${debian.accessodfapi}" />
+    </path>
+    <!-- <manifestclasspath property="jar.classpath" jarfile="${maven.build.dir}/${maven.build.finalName}.jar">
+         <classpath refid="build.classpath" />
+    </manifestclasspath>
+    -->
+
+    <pathconvert refid="build.classpath" property="jar.classpath" pathsep=" "/>
+
+    <path id="build.test.classpath"/>
+
+    <!-- ====================================================================== -->
+    <!-- Cleaning up target                                                     -->
+    <!-- ====================================================================== -->
+
+    <target name="clean" description="Clean the output directory">
+        <delete dir="${maven.build.dir}"/>
+    </target>
+
+    <!-- ====================================================================== -->
+    <!-- Compilation target                                                     -->
+    <!-- ====================================================================== -->
+
+    <target name="compile" depends="get-deps" description="Compile the code">
+        <mkdir dir="${maven.build.outputDir}"/>
+        <javac destdir="${maven.build.outputDir}" 
+            nowarn="false" 
+            debug="true" 
+            optimize="false" 
+            deprecation="true" 
+            verbose="false" 
+            fork="false" >
+            <src>
+                <pathelement location="${maven.build.srcDir.0}"/>
+            </src>
+            <classpath refid="build.classpath"/>
+        </javac>
+    </target>
+
+    <!-- ====================================================================== -->
+    <!-- Test-compilation target                                                -->
+    <!-- ====================================================================== -->
+
+    <target name="compile-tests" 
+        depends="compile" 
+        description="Compile the test code" 
+        unless="maven.test.skip">
+        <mkdir dir="${maven.build.testOutputDir}"/>
+    </target>
+
+    <!-- ====================================================================== -->
+    <!-- Run all tests                                                          -->
+    <!-- ====================================================================== -->
+
+    <target name="test" 
+        depends="compile-tests, junit-missing" 
+        unless="junit.skipped" 
+        description="Run the test cases"/>
+
+    <target name="test-junit-present">
+        <available classname="junit.framework.Test" property="junit.present"/>
+    </target>
+
+    <target name="test-junit-status" 
+        depends="test-junit-present">
+        <condition property="junit.missing">
+            <and>
+                <isfalse value="${junit.present}"/>
+                <isfalse value="${maven.test.skip}"/>
+            </and>
+        </condition>
+        <condition property="junit.skipped">
+            <or>
+                <isfalse value="${junit.present}"/>
+                <istrue value="${maven.test.skip}"/>
+            </or>
+        </condition>
+    </target>
+
+    <target name="junit-missing" 
+        depends="test-junit-status" 
+        if="junit.missing">
+        <echo>=================================== WARNING ===================================</echo>
+        <echo> JUnit is not present in your $ANT_HOME/lib directory. Tests not executed.</echo>
+        <echo>===============================================================================</echo>
+    </target>
+
+    <!-- ====================================================================== -->
+    <!-- Javadoc target                                                         -->
+    <!-- ====================================================================== -->
+
+    <target name="javadoc" description="Generates the Javadoc of the application">
+        <javadoc sourcepath="${maven.build.srcDir.0}" 
+            packagenames="*" 
+            destdir="${maven.reporting.outputDirectory}/apidocs" 
+            access="protected" 
+            old="false" 
+            verbose="false" 
+            version="true" 
+            use="true" 
+            author="true" 
+            splitindex="false" 
+            nodeprecated="false" 
+            nodeprecatedlist="false" 
+            notree="false" 
+            noindex="false" 
+            nohelp="false" 
+            nonavbar="false" 
+            serialwarn="false" 
+            charset="ISO-8859-1" 
+            linksource="false" 
+            breakiterator="false"/>
+    </target>
+
+    <!-- ====================================================================== -->
+    <!-- Package target                                                         -->
+    <!-- ====================================================================== -->
+
+    <target name="package" depends="compile,test" description="Package the application">
+        <jar jarfile="${maven.build.dir}/${maven.build.finalName}.jar" 
+            compress="true" 
+            index="false" 
+            basedir="${maven.build.outputDir}" 
+            excludes="**/package.html">
+            <manifest>
+                <!-- <attribute name="Main-Class" value="com.my.prog.MyProg"/> -->
+                <attribute name="Class-Path" value="${jar.classpath}"/>
+            </manifest>
+        </jar>
+    </target>
+
+    <!-- ====================================================================== -->
+    <!-- A dummy target for the package named after the type it creates         -->
+    <!-- ====================================================================== -->
+
+    <target name="jar" depends="package" description="Builds the jar for the application"/>
+
+    <!-- ====================================================================== -->
+    <!-- Download dependencies target                                           -->
+    <!-- ====================================================================== -->
+
+    <target name="test-offline">
+        <condition property="maven.mode.offline">
+            <equals arg1="${maven.settings.offline}" arg2="true"/>
+        </condition>
+    </target>
+
+    <target name="get-deps" 
+        depends="test-offline" 
+        description="Download all dependencies" 
+        unless="maven.mode.offline">
+        <mkdir dir="${maven.repo.local}"/>
+    </target>
+
+</project>
Index: accessodf/debian.properties
===================================================================
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
+++ accessodf/debian.properties	2013-12-26 15:10:00.454340644 +0100
@@ -0,0 +1,6 @@
+debian.libreoffice.unoil=/usr/share/java/unoil.jar
+debian.libreoffice.ure=/usr/share/java/ure.jar
+debian.libreoffice.ridl=/usr/share/java/ridl.jar
+debian.libreoffice.juh=/usr/share/java/juh.jar
+debian.commonscollections=/usr/share/java/commons-collections3.jar
+debian.accessodfapi=/usr/share/java/accessodf-api.jar
Index: accessodf/accessodf-addon/src/main/oxt/META-INF/manifest.xml
===================================================================
--- accessodf.orig/accessodf-addon/src/main/oxt/META-INF/manifest.xml	2013-06-17 22:20:19.118737712 +0200
+++ accessodf/accessodf-addon/src/main/oxt/META-INF/manifest.xml	2013-12-26 15:16:00.912128065 +0100
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <manifest:manifest xmlns:manifest="http://openoffice.org/2001/manifest">
   <manifest:file-entry manifest:media-type="application/vnd.sun.star.uno-component;type=Java"
-                       manifest:full-path="accessodf-addon-${accessodf.version}.jar"/>
+                       manifest:full-path="accessodf-addon.jar"/>
   <manifest:file-entry manifest:media-type="application/vnd.sun.star.configuration-data"
                        manifest:full-path="WriterWindowState.xcu"/>
   <manifest:file-entry manifest:media-type="application/vnd.sun.star.configuration-data"
@@ -14,4 +14,4 @@
                        manifest:full-path="Settings.xcs"/>
   <manifest:file-entry manifest:media-type="application/vnd.sun.star.configuration-data"
                        manifest:full-path="registry/data/org/openoffice/Office/OptionsDialog.xcu"/>
-</manifest:manifest>
\ No newline at end of file
+</manifest:manifest>
