Commit e94b1f74 authored by Bill Lynch's avatar Bill Lynch Committed by bill

Fixed classpath includes


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@517 b35dd754-fafc-0310-a699-88a17e54d16e
parent 0025f2f3
......@@ -680,7 +680,7 @@
<classpath>
<path refid="plugin.dependencies" />
<!-- Jars used by the plugin to compile with -->
<pathelement location="@{pluginsrc}/@{plugin}/lib/*.jar" />
<fileset dir="@{pluginsrc}/@{plugin}/lib" includes="*.jar" />
</classpath>
</javac>
......@@ -713,7 +713,7 @@
<classpath>
<pathelement location="${java.home}/../lib/tools.jar" />
<path refid="jspc.dependencies" />
<pathelement location="${plugin.dev.dest.dir}/@{plugin}/target/lib/plugin-@{plugin}.jar" />
<fileset dir="@{pluginsrc}/@{plugin}/lib" includes="*.jar" />
<pathelement path="${compile.dir}" />
</classpath>
</taskdef>
......@@ -739,7 +739,7 @@
<classpath>
<path refid="jspc.dependencies" />
<pathelement path="${compile.dir}" />
<pathelement location="@{pluginsrc}/@{plugin}/lib/*.jar" />
<fileset dir="@{pluginsrc}/@{plugin}/lib" includes="*.jar" />
</classpath>
</javac>
......
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