Commit 3162ff93 authored by Bill Lynch's avatar Bill Lynch Committed by bill

Fixed bugs in plugin build process


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@500 b35dd754-fafc-0310-a699-88a17e54d16e
parent 79ceb956
...@@ -616,10 +616,11 @@ ...@@ -616,10 +616,11 @@
</ant> </ant>
<subdirinfo dir="${plugin.src.dir}" property="dirlist" ifexists="plugin.xml" except="admin" /> <subdirinfo dir="${plugin.src.dir}" property="dirlist" ifexists="plugin.xml" except="admin" />
<antcall target="-plugins-impl" /> <antcall target="-plugins-impl" />
<antcall target="-plugins-impl-dev" /> <antcall target="-plugins-impl-dev" />
</target><target name="-plugins-impl" if="${dirlist}"> </target><target name="-plugins-impl" unless="${dirlist}">
<for list="${dirlist}" param="plugin" trim="true"> <for list="${dirlist}" param="plugin" trim="true">
<sequential> <sequential>
...@@ -654,7 +655,7 @@ ...@@ -654,7 +655,7 @@
<mkdir dir="${plugin.dev.dest.dir}/@{plugin}/target" /> <mkdir dir="${plugin.dev.dest.dir}/@{plugin}/target" />
<!-- Compile plugin source code --> <!-- Compile plugin source code -->
<mkdir dir="@{pluginsrc}/@{plugin}/target/classes" /> <mkdir dir="${plugin.dev.dest.dir}/@{plugin}/target/classes" />
<javac <javac
destdir="${plugin.dev.dest.dir}/@{plugin}/target/classes" destdir="${plugin.dev.dest.dir}/@{plugin}/target/classes"
includeAntRuntime="no" includeAntRuntime="no"
...@@ -756,7 +757,7 @@ ...@@ -756,7 +757,7 @@
<!-- Jar the plugin --> <!-- Jar the plugin -->
<jar jarfile="${plugin.dest.dir}/@{plugin}.jar"> <jar jarfile="${plugin.dest.dir}/@{plugin}.jar">
<fileset dir="${plugin.dest.dir}" /> <fileset dir="${plugin.dest.dir}/@{plugin}" />
</jar> </jar>
</sequential> </sequential>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment