Commit 7962a722 authored by Bill Lynch's avatar Bill Lynch Committed by bill

Minor tweaks


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@506 b35dd754-fafc-0310-a699-88a17e54d16e
parent 3308f676
...@@ -201,7 +201,7 @@ ...@@ -201,7 +201,7 @@
<target name="jar" depends="compile, jspc" description="Produces Messengers jars and sets up dependencies"> <target name="jar" depends="compile, jspc" description="Produces Messengers jars and sets up dependencies">
<mkdir dir="${jar.dest.dir}" /> <mkdir dir="${jar.dest.dir}" />
<!-- Make main Messenger jar --> <!-- Make main Messenger jar -->
<jar jarfile="${jar.dest.dir}/${jar.name}"> <jar jarfile="${jar.dest.dir}/${jar.name}" index="true">
<fileset dir="${compile.dir}" includes="**/*.class" excludes="org/jivesoftware/messenger/starter/ServerStarter.class" /> <fileset dir="${compile.dir}" includes="**/*.class" excludes="org/jivesoftware/messenger/starter/ServerStarter.class" />
<fileset dir="${jspc.classes.dest.dir}" includes="**/*.class" /> <fileset dir="${jspc.classes.dest.dir}" includes="**/*.class" />
<fileset dir="${src.i18n.dir}" includes="*.properties" /> <fileset dir="${src.i18n.dir}" includes="*.properties" />
...@@ -213,6 +213,7 @@ ...@@ -213,6 +213,7 @@
<attribute name="Built-By" value="Jive Software (www.jivesoftware.org)"/> <attribute name="Built-By" value="Jive Software (www.jivesoftware.org)"/>
</manifest> </manifest>
</jar> </jar>
<!-- Make startup jar --> <!-- Make startup jar -->
<jar jarfile="${jar.dest.dir}/${jar.starter.name}"> <jar jarfile="${jar.dest.dir}/${jar.starter.name}">
<fileset dir="${compile.dir}"> <fileset dir="${compile.dir}">
...@@ -445,9 +446,9 @@ ...@@ -445,9 +446,9 @@
<!-- Create a logs dir in the binary release --> <!-- Create a logs dir in the binary release -->
<mkdir dir="${prepare.out.dir}/logs" /> <mkdir dir="${prepare.out.dir}/logs" />
<!-- Copy plugins --> <!-- Copy admin plugin source (if any) -->
<copy todir="${prepare.out.dir}"> <copy todir="${prepare.out.dir}">
<fileset dir="${src.dir}" includes="plugins/**/*.*" /> <fileset dir="${src.dir}" includes="plugins/admin/*.*" />
</copy> </copy>
<!-- Copy admin plugin resources --> <!-- Copy admin plugin resources -->
...@@ -459,7 +460,7 @@ ...@@ -459,7 +460,7 @@
<exclude name="**/*.jspf" /> <exclude name="**/*.jspf" />
</fileset> </fileset>
</copy> </copy>
<!-- Copy other WEB-INF stuff --> <!-- Copy other admin WEB-INF stuff -->
<copy todir="${prepare.out.dir}/plugins/admin/webapp"> <copy todir="${prepare.out.dir}/plugins/admin/webapp">
<fileset dir="${webapp.dest.dir}" /> <fileset dir="${webapp.dest.dir}" />
</copy> </copy>
...@@ -528,6 +529,12 @@ ...@@ -528,6 +529,12 @@
<filter token="version" value="${version}" /> <filter token="version" value="${version}" />
</filterset> </filterset>
</copy> </copy>
<copy todir="${release.out.dir}/documentation">
<fileset dir="${docs.dir}/docs/licenses" />
</copy>
<copy todir="${release.src.out.dir}/documentation">
<fileset dir="${docs.dir}/licenses" />
</copy>
<!-- Copy Javadocs --> <!-- Copy Javadocs -->
<copy todir="${release.out.dir}/documentation/javadoc"> <copy todir="${release.out.dir}/documentation/javadoc">
......
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