Eclipse PDE build fails to find jar location on customAssembly - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T22:38:19Zhttp://stackoverflow.com/feeds/question/1013795http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1013795/eclipse-pde-build-fails-to-find-jar-location-on-customassembly0Eclipse PDE build fails to find jar location on customAssemblyRobert Munteanu2009-06-18T16:40:25Z2009-06-18T17:20:45Z
<p>I'm running a PDE build - pretty much defaults ( see at the end of the message ) which manages to copy all my plugins/features, resolve them, compile them and generate p2 metadata.</p>
<p>At the <code>customAssembly</code> step it fails misteriously with </p>
<pre><code>BUILD FAILED
/home/robert/apps/eclipse/plugins/org.eclipse.pde.build_3.5.0.v20090527-1800/scripts /build.xml:38: The following error occurred while executing this line:
/home/robert/apps/eclipse/plugins/org.eclipse.pde.build_3.5.0.v20090527-1800/scripts /build.xml:129: The following error occurred while executing this line:
/home/robert/apps/eclipse/plugins/org.eclipse.pde.build_3.5.0.v20090527-1800/templates/headless-build/customTargets.xml:12: The following error occurred while executing this line:
/home/robert/apps/eclipse/plugins/org.eclipse.pde.build_3.5.0.v20090527-1800/templates/headless-build/allElements.xml:16: The following error occurred while executing this line:
/home/robert/apps/eclipse/plugins/org.eclipse.pde.build_3.5.0.v20090527-1800/scripts/genericTargets.xml:192: The following error occurred while executing this line:
/tmp/eclipse.build/package.com.itsolut.mantis_feature.all.xml:23: The following error occurred while executing this line:
/tmp/eclipse.build/package.com.itsolut.mantis_feature.all.xml:15: The following error occurred while executing this line:
/home/robert/apps/eclipse/plugins/org.eclipse.pde.build_3.5.0.v20090527-1800/templates/headless-build/allElements.xml:31: The following error occurred while executing this line:
/tmp/eclipse.build/package.com.itsolut.mantis_feature.xml:99: The following error occurred while executing this line:
/tmp/eclipse.build/package.com.itsolut.mantis_feature.xml:169: /tmp/eclipse.build/tmp/eclipse/plugins/javax.xml.soap_1.3.0.v200904281458 not found.
</code></pre>
<p>Strangely enough, there is a jar file located in the /tmp/eclipse.build/tmp/eclipse/plugins/ directory:</p>
<pre><code>/tmp/eclipse.build/tmp/eclipse/plugins/javax.xml.soap_1.3.0.v200904281458.jar
</code></pre>
<p>I'm out of idea since this is supposed to be a completely automatic process, but yet it fails misteriously.</p>
<p>Any ideas?</p>
<p><hr /></p>
<h2>Build file</h2>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
</code></pre>
<p></p>
<pre><code><property name="builder" location="."/>
<property name="topLevelElementId" value="com.itsolut.mantis_feature"/>
<property name="baseLocation" location="${eclipse.home}"/>
<property name="base" location="${baseLocation}/.."/>
<property name="buildDirectory" location="${java.io.tmpdir}/eclipse.build"/>
<import file="${eclipse.pdebuild.scripts}/build.xml"/>
<target name="copyProjects">
<delete dir="${buildDirectory}"/>
<mkdir dir="${buildDirectory}"/>
<record name="${buildDirectory}/${topLevelElementId}-build.log" loglevel="verbose"/>
<echoproperties/>
<mkdir dir="${buildDirectory}/features/${topLevelElementId}"/>
<copy todir="${buildDirectory}/features/${topLevelElementId}">
<fileset dir="../com.itsolut.mantis-feature"/>
</copy>
<mkdir dir="${buildDirectory}/plugins"/>
<copy todir="${buildDirectory}/plugins">
<fileset dir="..">
<include name="com.itsolut.mantis/**"/>
<include name="com.itsolut.mantis.core/**"/>
<include name="com.itsolut.mantis.ui/**"/>
<exclude name="*/bin/**"/>
</fileset>
</copy>
</target>
<target name="runBuild" depends="copyProjects,main"/>
</code></pre>
<p></p>
<h2>Complete source</h2>
<p>Brave souls can take a look at <a href="http://mylyn-mantis.svn.sourceforge.net/viewvc/mylyn-mantis/trunk/com.itsolut.mantis.pde/" rel="nofollow">the project in svn</a> for more information.</p>
http://stackoverflow.com/questions/1013795/eclipse-pde-build-fails-to-find-jar-location-on-customassembly/1014004#10140041Answer by Andrew Niefer for Eclipse PDE build fails to find jar location on customAssemblyAndrew Niefer2009-06-18T17:20:45Z2009-06-18T17:20:45Z<p>I believe you are hitting <a href="https://bugs.eclipse.org/bugs/show%5Fbug.cgi?id=265471" rel="nofollow">this bug</a>.</p>
<p>As a workaround, try adding <code>unpack="false"</code> attributes to your com.itsolut.mantis_feature/feature.xml for the binary jar'ed plugins you are including (ie probably most of the javax.* bundles).</p>