Eclipse PDE build fails to find jar location on customAssembly - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T22:38:19Z http://stackoverflow.com/feeds/question/1013795 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1013795/eclipse-pde-build-fails-to-find-jar-location-on-customassembly 0 Eclipse PDE build fails to find jar location on customAssembly Robert Munteanu 2009-06-18T16:40:25Z 2009-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>&lt;?xml version="1.0" encoding="UTF-8"?&gt; </code></pre> <p></p> <pre><code>&lt;property name="builder" location="."/&gt; &lt;property name="topLevelElementId" value="com.itsolut.mantis_feature"/&gt; &lt;property name="baseLocation" location="${eclipse.home}"/&gt; &lt;property name="base" location="${baseLocation}/.."/&gt; &lt;property name="buildDirectory" location="${java.io.tmpdir}/eclipse.build"/&gt; &lt;import file="${eclipse.pdebuild.scripts}/build.xml"/&gt; &lt;target name="copyProjects"&gt; &lt;delete dir="${buildDirectory}"/&gt; &lt;mkdir dir="${buildDirectory}"/&gt; &lt;record name="${buildDirectory}/${topLevelElementId}-build.log" loglevel="verbose"/&gt; &lt;echoproperties/&gt; &lt;mkdir dir="${buildDirectory}/features/${topLevelElementId}"/&gt; &lt;copy todir="${buildDirectory}/features/${topLevelElementId}"&gt; &lt;fileset dir="../com.itsolut.mantis-feature"/&gt; &lt;/copy&gt; &lt;mkdir dir="${buildDirectory}/plugins"/&gt; &lt;copy todir="${buildDirectory}/plugins"&gt; &lt;fileset dir=".."&gt; &lt;include name="com.itsolut.mantis/**"/&gt; &lt;include name="com.itsolut.mantis.core/**"/&gt; &lt;include name="com.itsolut.mantis.ui/**"/&gt; &lt;exclude name="*/bin/**"/&gt; &lt;/fileset&gt; &lt;/copy&gt; &lt;/target&gt; &lt;target name="runBuild" depends="copyProjects,main"/&gt; </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#1014004 1 Answer by Andrew Niefer for Eclipse PDE build fails to find jar location on customAssembly Andrew Niefer 2009-06-18T17:20:45Z 2009-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>