Commit 6464fd96 authored by Derek DeMoro's avatar Derek DeMoro Committed by derek

Updated build.xml to add appropriate tag libraries and jars to war.


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@96 b35dd754-fafc-0310-a699-88a17e54d16e
parent 8584887d
...@@ -95,6 +95,8 @@ ...@@ -95,6 +95,8 @@
<patternset id="web.sources"> <patternset id="web.sources">
<include name="**/*.jsp" /> <include name="**/*.jsp" />
<include name="**/*.jar" />
<include name="**/*.tld" />
<include name="**/*.jspf" /> <include name="**/*.jspf" />
<include name="**/*.html" /> <include name="**/*.html" />
<include name="**/*.css" /> <include name="**/*.css" />
...@@ -339,6 +341,10 @@ ...@@ -339,6 +341,10 @@
<copy todir="${release.out.dir}/plugins/admin/webapp"> <copy todir="${release.out.dir}/plugins/admin/webapp">
<fileset dir="${webapp.dest.dir}" /> <fileset dir="${webapp.dest.dir}" />
</copy> </copy>
<!-- Copy in tag library support -->
<copy todir="${release.out.dir}/plugins/admin/webapp/WEB-INF/lib">
<fileset dir="${lib.build.dir}" includes="commons-el.jar" />
</copy>
<!-- Copy in pre-compiled JSP jar --> <!-- Copy in pre-compiled JSP jar -->
<copy todir="${release.out.dir}/plugins/admin/webapp/WEB-INF/lib"> <copy todir="${release.out.dir}/plugins/admin/webapp/WEB-INF/lib">
<fileset dir="${jspc.dest.dir}" includes="${jspc.jar.name}" /> <fileset dir="${jspc.dest.dir}" includes="${jspc.jar.name}" />
...@@ -346,8 +352,9 @@ ...@@ -346,8 +352,9 @@
<!-- Copy in jasper runtime jar --> <!-- Copy in jasper runtime jar -->
<copy todir="${release.out.dir}/plugins/admin/webapp/WEB-INF/lib"> <copy todir="${release.out.dir}/plugins/admin/webapp/WEB-INF/lib">
<fileset dir="${lib.build.dir}" includes="jasper-runtime.jar" /> <fileset dir="${lib.build.dir}" includes="jasper-runtime.jar" />
<fileset dir="${lib.build.dir}" includes="jasper-compiler.jar" />
</copy> </copy>
<!-- Copy dist docs, use filtering --> <!-- Copy dist docs, use filtering -->
<copy todir="${release.out.dir}"> <copy todir="${release.out.dir}">
<fileset dir="${docs.dir}/dist" includes="*.*" /> <fileset dir="${docs.dir}/dist" includes="*.*" />
......
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