Remove the one little html file that ends up in BOB.jar. The file is NOT a javadoc file, it is a package file. Still, it is zapped.

This commit is contained in:
sponge
2011-06-01 02:32:00 +00:00
parent f8dc8a298e
commit 5912c60692
2 changed files with 25 additions and 0 deletions

View File

@@ -71,6 +71,26 @@
nbproject/build-impl.xml file.
-->
<target name="-post-jar">
<!-- clean up leftover html file in final jar. -->
<mkdir dir="${dist.dir}/rejar" />
<unjar dest="${dist.dir}/rejar/" >
<fileset dir="${dist.dir}" >
<include name="**/*.jar" />
</fileset>
</unjar>
<delete dir="${dist.dir}/rejar/" >
<include name="**/*.html" />
</delete>
<jar jarfile="dist/BOB.jar">
<fileset dir="${dist.dir}/rejar/" />
</jar>
<delete dir="${dist.dir}" followsymlinks="false" includeemptydirs="true">
<include name="rejar/**/*" />
<include name="rejar" />
</delete>
</target>
<target depends="jar" description="Build BOB into a SINGLE JAR." name="onejar">
<!-- Make needed working dirs -->
<mkdir dir="${dist.dir}/lib" />

View File

@@ -1,3 +1,8 @@
2011-06-01 sponge
* Remove the one little html file that ends up in BOB.jar.
The file is NOT a javadoc file, it is a package file.
Still, it is zapped.
2011-05-31 zzz
* HTTP Proxy: Don't send redirect for POST (thx kytv)
* jbigi: Add support for solaris