- fixed a mistake in the repacking of jboss.jar, down to around 5mb now ( can still be make smaller but would need more time find out what's safe to remove ).
This commit is contained in:
parent
3b4778f9a0
commit
c670fe53f5
|
|
@ -6,7 +6,7 @@
|
||||||
<project name="tools" default="toolsDistribution" basedir=".">
|
<project name="tools" default="toolsDistribution" basedir=".">
|
||||||
|
|
||||||
<description>
|
<description>
|
||||||
The resulting CCTools.jar and CSTools.jar
|
The resulting CCTools.jar and CSTools.jar
|
||||||
repackage all third party libraries
|
repackage all third party libraries
|
||||||
in a single jar for simplified start and version control.
|
in a single jar for simplified start and version control.
|
||||||
The resuling Server CSTools.jar is added to EARs
|
The resuling Server CSTools.jar is added to EARs
|
||||||
|
|
@ -37,7 +37,7 @@
|
||||||
<exclude name="META-INF/MANIFEST.MF" />
|
<exclude name="META-INF/MANIFEST.MF" />
|
||||||
<exclude name="META-INF/INDEX.LIST" />
|
<exclude name="META-INF/INDEX.LIST" />
|
||||||
</patternset>
|
</patternset>
|
||||||
|
|
||||||
<taskdef resource="net/sf/antcontrib/antlib.xml">
|
<taskdef resource="net/sf/antcontrib/antlib.xml">
|
||||||
<classpath>
|
<classpath>
|
||||||
<fileset file="lib/ant-contrib-1.0b1.jar"></fileset>
|
<fileset file="lib/ant-contrib-1.0b1.jar"></fileset>
|
||||||
|
|
@ -92,9 +92,15 @@
|
||||||
<target name="toolsAppsServer" depends="toolsCompile" unless="jars.uptodate" description="Create JBoss Client jar">
|
<target name="toolsAppsServer" depends="toolsCompile" unless="jars.uptodate" description="Create JBoss Client jar">
|
||||||
<!-- Create jboss.jar file -->
|
<!-- Create jboss.jar file -->
|
||||||
<jar jarfile="${dist.dir}/jboss.jar" duplicate="preserve">
|
<jar jarfile="${dist.dir}/jboss.jar" duplicate="preserve">
|
||||||
<zipgroupfileset dir="${jboss.dir}/client" includes="*.jar">
|
<zipfileset src="${jboss.dir}/client/jboss-ejb3x.jar">
|
||||||
<patternset refid="manifest.exclude" />
|
<patternset refid="manifest.exclude" />
|
||||||
</zipgroupfileset>
|
</zipfileset>
|
||||||
|
<zipfileset src="${jboss.dir}/client/jboss-ejb3-client.jar">
|
||||||
|
<patternset refid="manifest.exclude" />
|
||||||
|
</zipfileset>
|
||||||
|
<zipfileset src="${jboss.dir}/client/jbossall-client.jar">
|
||||||
|
<patternset refid="manifest.exclude" />
|
||||||
|
</zipfileset>
|
||||||
<manifest>
|
<manifest>
|
||||||
<attribute name="Specification-Title" value="Adempiere JBoss Client" />
|
<attribute name="Specification-Title" value="Adempiere JBoss Client" />
|
||||||
<attribute name="Specification-Version" value="${env.ADEMPIERE_VERSION}" />
|
<attribute name="Specification-Version" value="${env.ADEMPIERE_VERSION}" />
|
||||||
|
|
@ -286,6 +292,9 @@
|
||||||
<zipfileset src="lib/commons-collections-3.1.jar">
|
<zipfileset src="lib/commons-collections-3.1.jar">
|
||||||
<patternset refid="manifest.exclude" />
|
<patternset refid="manifest.exclude" />
|
||||||
</zipfileset>
|
</zipfileset>
|
||||||
|
<zipfileset src="lib/commons-codec.jar">
|
||||||
|
<patternset refid="manifest.exclude" />
|
||||||
|
</zipfileset>
|
||||||
<!-- jars for 2pack -->
|
<!-- jars for 2pack -->
|
||||||
<zipfileset src="lib/ant.jar">
|
<zipfileset src="lib/ant.jar">
|
||||||
<patternset refid="manifest.exclude" />
|
<patternset refid="manifest.exclude" />
|
||||||
|
|
@ -435,6 +444,9 @@
|
||||||
<zipfileset src="lib/commons-collections-3.1.jar">
|
<zipfileset src="lib/commons-collections-3.1.jar">
|
||||||
<patternset refid="manifest.exclude" />
|
<patternset refid="manifest.exclude" />
|
||||||
</zipfileset>
|
</zipfileset>
|
||||||
|
<zipfileset src="lib/commons-codec.jar">
|
||||||
|
<patternset refid="manifest.exclude" />
|
||||||
|
</zipfileset>
|
||||||
</jar>
|
</jar>
|
||||||
|
|
||||||
</target>
|
</target>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue