Re: Can't run zipped version of application
| Newsgroups | gmane.comp.java.netbeans.modules.openide.devel |
|---|---|
| Message-ID | <[email protected]> |
The problem seem to be that
"{nbinstall}/platform/core/asm-all-5.0.1.jar" is not copied into the
zipped target folders. It's a bug. Until it's fixed, I've modified the
"copy-cluster" task in my harness/suite.xml as follows:
<target name="copy-cluster" ......>
<pathconvert property="cluster.name">
.....
</pathconvert>
<!--Add the following copy task as a workaround to build-zip on
8.1-->
<copy todir="${dest.dir}/${cluster.name}">
<fileset dir="${basedir}">
<filename name="core/asm-all-5.0.1.jar"/>
</fileset>
</copy>
<copy todir="${dest.dir}/${cluster.name}">
.......
</target>
I couldn't remove a dependency on module "OWS ASM" which needs the
above file on its class path.