--- a/build.xml +++ b/build.xml @@ -12,8 +12,17 @@ <property name="dist.target" value="dist.complete" /> <property name="compiler.source" value="1.5" /> <property name="compiler.target" value="1.5" /> - + <property name="jedit.plugins.dir" value="${install.dir}" /> + <import file="${build.support}/plugin-build.xml" /> + + <selector id="packageFiles"> + <and> + <or> + <filename name="docs/LucenePlugin.html" /> + </or> + </and> + </selector> <path id="project.class.path"> <pathelement location="${jedit.install.dir}/jedit.jar" /> @@ -22,11 +31,11 @@ <pathelement location="${install.dir}/lucene-core-2.4.1.jar"/> <pathelement location="${install.dir}/lucene-highlighter-2.4.1.jar"/> </path> - - <target name="build.prepare" > - <mkdir dir="${build.dir}" /> + + <target name="build.prepare"> + <mkdir dir="${build.dir}" /> <copy file="lucene-core-2.4.1.jar" todir="${install.dir}" /> <copy file="lucene-highlighter-2.4.1.jar" todir="${install.dir}" /> - - </target> + + </target> </project>