Hey (Damian)
I was wondering what you meant with this comment in the build.xml:
<!--
Re-packaging into new bundle as original having wrong paths in
osgi
bundle manifest and getting exceptions
'No paths specified in header' while loading
-->
<jar
compress="false" destfile="${bundles.dest}/httpclient.jar"
manifest="${lib.noinst}/httpclient.manifest.mf">
<zipfileset src="${lib.noinst}/httpclient-osgi-4.2.3.jar"
prefix=""/>
<zipfileset src="${lib.noinst}/httpcore-osgi-4.2.3.jar"
prefix=""/>
</jar>
I tried to replace this with
<copy file="${lib.noinst}/httpclient-osgi-4.2.3.jar"
tofile="${bundles.dest}/httpclient.jar"/>
<copy file="${lib.noinst}/httpcore-osgi-4.2.3.jar"
tofile="${bundles.dest}/httpcore.jar"/>
and found no issues.
Ingo