<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:wfw="http://wellformedweb.org/CommentAPI/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
>
<!-- MHonArc v2.6.10 -->
	<channel>
		<title>pde-build-dev</title>
		<link>http://dev.eclipse.org/mhonarc/lists/pde-build-dev/maillist.html</link>
		<description>pde-build-dev</description>
		<language>en-us</language>
		<pubDate>Thu, 17 Jul 2008 17:03:58 GMT</pubDate>
		<lastBuildDate>Thu, 17 Jul 2008 17:03:58 GMT</lastBuildDate>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		<generator>MHonArc RSS 2.0 RCFile</generator>
		<managingEditor>webmaster@eclipse.org (Webmaster)</managingEditor>
		<webMaster>webmaster@eclipse.org (Webmaster)</webMaster>
		<image>
			<title>pde-build-dev</title>
			<url>http://www.eclipse.org/eclipse.org-common/themes/Phoenix/images/eclipse_home_header.jpg</url>
			<link>http://dev.eclipse.org/mhonarc/lists/pde-build-dev/maillist.html</link>
		</image>
 

	<item>
		<title>Re: [pde-build-dev] Build multiple features in one run of PDE</title>
		<link>http://dev.eclipse.org/mhonarc/lists/pde-build-dev/msg00677.html</link>
		<description> -- Mark Russell Instantiations, Inc. http://www.instantiations.com Attachment: smime.p7s Description: S/MIME Cryptographic Signature </description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Thanks for the additional input.</pre><br>
<tt>Andrew Niefer wrote:
</tt><blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><tt><br>You could also just create a container feature to include your two 
features and run a normal build on that container.  The container will 
not be included in the build results if you leave its bin.includes 
property empty.</tt><br>
<br>
<pre style="margin: 0em;">-Andrew</pre><br>
<pre style="margin: 0em;"><br>*Mark Russell &lt;mark_russell@xxxxxxxxxxxxxxxxxx&gt;*
Sent by: pde-build-dev-bounces@xxxxxxxxxxx</pre><br>
<pre style="margin: 0em;">07/17/2008 10:36 AM
Please respond to
&quot;Eclipse PDE Build developers list.&quot; &lt;pde-build-dev@xxxxxxxxxxx&gt;</pre><br>
<pre style="margin: 0em;"><br>	
To
	&quot;Eclipse PDE Build developers list.&quot; &lt;pde-build-dev@xxxxxxxxxxx&gt;
cc
	
Subject
	Re: [pde-build-dev] Build multiple features in one run of PDE</pre><br>
<pre style="margin: 0em;"><br>	</pre><br>
<pre style="margin: 0em;"><br></pre><br>
<pre style="margin: 0em;"><br></pre><br>
<pre style="margin: 0em;">Thank you :-&gt;,</pre><br>
<pre style="margin: 0em;">I did web searched but could not find any information on this.</pre><br>
<pre style="margin: 0em;">Ariel Garcia wrote:
 &gt; Hi Mark,
 &gt;
 &gt;&gt; If I have two features that I want to build.  Can I build then in one
 &gt;&gt; run of the PDE build?
 &gt;&gt;
 &gt;&gt; If so How do I do that?
 &gt;
 &gt; yes you can, you have list them both in the &quot;allElements.xml&quot; file,
 &gt; modifying the allelementsDelegator target.
 &gt; It would look like this, change the &quot;value&quot; entries:
 &gt;
 &gt;   &lt;target name=&quot;allElementsDelegator&quot;&gt;
 &gt;     &lt;ant antfile=&quot;${genericTargets}&quot; target=&quot;${target}&quot;&gt;
 &gt;       &lt;property name=&quot;type&quot; value=&quot;feature&quot; /&gt;
 &gt;       &lt;property name=&quot;id&quot; value=&quot;eu.geclipse&quot; /&gt;
 &gt;     &lt;/ant&gt;
 &gt;     &lt;ant antfile=&quot;${genericTargets}&quot; target=&quot;${target}&quot;&gt;
 &gt;       &lt;property name=&quot;type&quot; value=&quot;feature&quot; /&gt;
 &gt;       &lt;property name=&quot;id&quot; value=&quot;eu.geclipse.batch&quot; /&gt;
 &gt;     &lt;/ant&gt;
 &gt; ...
 &gt;   &lt;/target&gt;
 &gt;
 &gt; and then for each feature you have to repeat the assemble target blocks:
 &gt;
 &gt;   &lt;!-- All core targets --&gt;
 &gt;   &lt;target name=&quot;assemble.eu.geclipse.group.group.group&quot;&gt;
 &gt;     &lt;ant antfile=&quot;${assembleScriptName}&quot; dir=&quot;${buildDirectory}&quot;/&gt;
 &gt;   &lt;/target&gt;
 &gt;   &lt;target name=&quot;assemble.eu.geclipse.linux.gtk.x86&quot;&gt;
 &gt;     &lt;ant antfile=&quot;${assembleScriptName}&quot; dir=&quot;${buildDirectory}&quot;/&gt;
 &gt;   &lt;/target&gt;
 &gt; ...
 &gt;   &lt;target name=&quot;assemble.eu.geclipse.win32.all.x86&quot;&gt;
 &gt;     &lt;ant antfile=&quot;${assembleScriptName}&quot; dir=&quot;${buildDirectory}&quot;/&gt;
 &gt;   &lt;/target&gt;
 &gt;
 &gt;   &lt;!-- All batch targets --&gt;
 &gt;   &lt;target name=&quot;assemble.eu.geclipse.batch.group.group.group&quot;&gt;
 &gt;     &lt;ant antfile=&quot;${assembleScriptName}&quot; dir=&quot;${buildDirectory}&quot;/&gt;
 &gt;   &lt;/target&gt;
 &gt;   &lt;target name=&quot;assemble.eu.geclipse.batch.linux.gtk.x86&quot;&gt;
 &gt;     &lt;ant antfile=&quot;${assembleScriptName}&quot; dir=&quot;${buildDirectory}&quot;/&gt;
 &gt;   &lt;/target&gt;
 &gt; ...
 &gt;   &lt;target name=&quot;assemble.eu.geclipse.batch.win32.all.x86&quot;&gt;
 &gt;     &lt;ant antfile=&quot;${assembleScriptName}&quot; dir=&quot;${buildDirectory}&quot;/&gt;
 &gt;   &lt;/target&gt;
 &gt;
 &gt; Hope it helps, cheers, Ariel
 &gt; _______________________________________________
 &gt; pde-build-dev mailing list
 &gt; pde-build-dev@xxxxxxxxxxx
 &gt; <a  href="https://dev.eclipse.org/mailman/listinfo/pde-build-dev">https://dev.eclipse.org/mailman/listinfo/pde-build-dev</a>
 &gt;</pre><br>
<pre style="margin: 0em;"><br>--
Mark Russell
Instantiations, Inc.
+1 724-368-3331 (land line)
<a  href="http://www.instantiations.com">http://www.instantiations.com</a>
_______________________________________________
pde-build-dev mailing list
pde-build-dev@xxxxxxxxxxx
<a  href="https://dev.eclipse.org/mailman/listinfo/pde-build-dev">https://dev.eclipse.org/mailman/listinfo/pde-build-dev</a></pre><br>
<pre style="margin: 0em;"><br>------------------------------------------------------------------------</pre><br>
<pre style="margin: 0em;">_______________________________________________
pde-build-dev mailing list
pde-build-dev@xxxxxxxxxxx
<a  href="https://dev.eclipse.org/mailman/listinfo/pde-build-dev">https://dev.eclipse.org/mailman/listinfo/pde-build-dev</a>
</pre></blockquote><pre style="margin: 0em;"><br></pre><br>
<pre style="margin: 0em;">--
Mark Russell
Instantiations, Inc.
+1 724-368-3331 (land line)
<a  href="http://www.instantiations.com">http://www.instantiations.com</a>
</pre><p><strong>Attachment:
<a href="p7swNJLuiTdAY.p7s" ><tt>smime.p7s</tt></a></strong><br>
<em>Description:</em> S/MIME Cryptographic Signature</p>
]]></content:encoded>
		<pubDate>Thu, 17 Jul 2008 15:14:05 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/pde-build-dev/msg00677.html</guid>
		<author>mark_russell@xxxxxxx (Mark Russell)</author>
	</item>
	<item>
		<title>Re: [pde-build-dev] Build multiple features in one run of PDE</title>
		<link>http://dev.eclipse.org/mhonarc/lists/pde-build-dev/msg00676.html</link>
		<description> then in one file, /&amp;gt; /&amp;gt; /&amp;gt; /&amp;gt; </description>
		<content:encoded><![CDATA[
<br><font size=2 face="sans-serif">You could also just create a container
feature to include your two features and run a normal build on that container.
&nbsp;The container will not be included in the build results if you leave
its bin.includes property empty.</font>
<br>
<br><font size=2 face="sans-serif">-Andrew</font>
<br>
<br>
<br>
<table width=100%>
<tr valign=top>
<td width=40%><font size=1 face="sans-serif"><b>Mark Russell &lt;mark_russell@xxxxxxxxxxxxxxxxxx&gt;</b>
</font>
<br><font size=1 face="sans-serif">Sent by: pde-build-dev-bounces@xxxxxxxxxxx</font>
<p><font size=1 face="sans-serif">07/17/2008 10:36 AM</font>
<table border>
<tr valign=top>
<td bgcolor=white>
<div align=center><font size=1 face="sans-serif">Please respond to<br>
&quot;Eclipse PDE Build developers list.&quot; &lt;pde-build-dev@xxxxxxxxxxx&gt;</font></div></table>
<br>
<td width=59%>
<table width=100%>
<tr valign=top>
<td>
<div align=right><font size=1 face="sans-serif">To</font></div>
<td><font size=1 face="sans-serif">&quot;Eclipse PDE Build developers list.&quot;
&lt;pde-build-dev@xxxxxxxxxxx&gt;</font>
<tr valign=top>
<td>
<div align=right><font size=1 face="sans-serif">cc</font></div>
<td>
<tr valign=top>
<td>
<div align=right><font size=1 face="sans-serif">Subject</font></div>
<td><font size=1 face="sans-serif">Re: [pde-build-dev] Build multiple features
in one run of PDE</font></table>
<br>
<table>
<tr valign=top>
<td>
<td></table>
<br></table>
<br>
<br>
<br><tt><font size=2>Thank you :-&gt;,<br>
<br>
I did web searched but could not find any information on this.<br>
<br>
Ariel Garcia wrote:<br>
&gt; Hi Mark,<br>
&gt; <br>
&gt;&gt; If I have two features that I want to build. &nbsp;Can I build
then in one<br>
&gt;&gt; run of the PDE build?<br>
&gt;&gt;<br>
&gt;&gt; If so How do I do that?<br>
&gt; <br>
&gt; yes you can, you have list them both in the &quot;allElements.xml&quot;
file, <br>
&gt; modifying the allelementsDelegator target.<br>
&gt; It would look like this, change the &quot;value&quot; entries:<br>
&gt; <br>
&gt; &nbsp; &lt;target name=&quot;allElementsDelegator&quot;&gt;<br>
&gt; &nbsp; &nbsp; &lt;ant antfile=&quot;${genericTargets}&quot; target=&quot;${target}&quot;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &lt;property name=&quot;type&quot; value=&quot;feature&quot;
/&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &lt;property name=&quot;id&quot; value=&quot;eu.geclipse&quot;
/&gt;<br>
&gt; &nbsp; &nbsp; &lt;/ant&gt;<br>
&gt; &nbsp; &nbsp; &lt;ant antfile=&quot;${genericTargets}&quot; target=&quot;${target}&quot;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &lt;property name=&quot;type&quot; value=&quot;feature&quot;
/&gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &lt;property name=&quot;id&quot; value=&quot;eu.geclipse.batch&quot;
/&gt;<br>
&gt; &nbsp; &nbsp; &lt;/ant&gt;<br>
&gt; ...<br>
&gt; &nbsp; &lt;/target&gt;<br>
&gt; <br>
&gt; and then for each feature you have to repeat the assemble target blocks:<br>
&gt; <br>
&gt; &nbsp; &lt;!-- All core targets --&gt;<br>
&gt; &nbsp; &lt;target name=&quot;assemble.eu.geclipse.group.group.group&quot;&gt;<br>
&gt; &nbsp; &nbsp; &lt;ant antfile=&quot;${assembleScriptName}&quot; dir=&quot;${buildDirectory}&quot;/&gt;<br>
&gt; &nbsp; &lt;/target&gt;<br>
&gt; &nbsp; &lt;target name=&quot;assemble.eu.geclipse.linux.gtk.x86&quot;&gt;<br>
&gt; &nbsp; &nbsp; &lt;ant antfile=&quot;${assembleScriptName}&quot; dir=&quot;${buildDirectory}&quot;/&gt;<br>
&gt; &nbsp; &lt;/target&gt;<br>
&gt; ...<br>
&gt; &nbsp; &lt;target name=&quot;assemble.eu.geclipse.win32.all.x86&quot;&gt;<br>
&gt; &nbsp; &nbsp; &lt;ant antfile=&quot;${assembleScriptName}&quot; dir=&quot;${buildDirectory}&quot;/&gt;<br>
&gt; &nbsp; &lt;/target&gt;<br>
&gt; <br>
&gt; &nbsp; &lt;!-- All batch targets --&gt;<br>
&gt; &nbsp; &lt;target name=&quot;assemble.eu.geclipse.batch.group.group.group&quot;&gt;<br>
&gt; &nbsp; &nbsp; &lt;ant antfile=&quot;${assembleScriptName}&quot; dir=&quot;${buildDirectory}&quot;/&gt;<br>
&gt; &nbsp; &lt;/target&gt;<br>
&gt; &nbsp; &lt;target name=&quot;assemble.eu.geclipse.batch.linux.gtk.x86&quot;&gt;<br>
&gt; &nbsp; &nbsp; &lt;ant antfile=&quot;${assembleScriptName}&quot; dir=&quot;${buildDirectory}&quot;/&gt;<br>
&gt; &nbsp; &lt;/target&gt;<br>
&gt; ...<br>
&gt; &nbsp; &lt;target name=&quot;assemble.eu.geclipse.batch.win32.all.x86&quot;&gt;<br>
&gt; &nbsp; &nbsp; &lt;ant antfile=&quot;${assembleScriptName}&quot; dir=&quot;${buildDirectory}&quot;/&gt;<br>
&gt; &nbsp; &lt;/target&gt;<br>
&gt; <br>
&gt; Hope it helps, cheers, Ariel<br>
&gt; _______________________________________________<br>
&gt; pde-build-dev mailing list<br>
&gt; pde-build-dev@xxxxxxxxxxx<br>
&gt; https://dev.eclipse.org/mailman/listinfo/pde-build-dev<br>
&gt; <br>
<br>
<br>
-- <br>
Mark Russell<br>
Instantiations, Inc.<br>
+1 724-368-3331 (land line)<br>
http://www.instantiations.com<br>
_______________________________________________<br>
pde-build-dev mailing list<br>
pde-build-dev@xxxxxxxxxxx<br>
https://dev.eclipse.org/mailman/listinfo/pde-build-dev<br>
</font></tt>
<br><p><strong>Attachment:
<a href="binZ91RyhlTFA.bin" ><tt>smime.p7s</tt></a></strong><br>
<em>Description:</em> Binary data</p>
]]></content:encoded>
		<pubDate>Thu, 17 Jul 2008 15:07:14 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/pde-build-dev/msg00676.html</guid>
		<author>aniefer@xxxxxxx (Andrew Niefer)</author>
	</item>
	<item>
		<title>Re: [pde-build-dev] Build multiple features in one run of PDE</title>
		<link>http://dev.eclipse.org/mhonarc/lists/pde-build-dev/msg00675.html</link>
		<description>Hi, oh, then this should help: http://help.eclipse.org/help33/index.jsp?topic=/org.eclipse.pde.doc.user/guide/tasks/pde_feature_build.htm and this http://www.eclipse.org/articles/Article-PDE-Automation/automation.html if you don't have it already Greets, A...</description>
		<content:encoded><![CDATA[$X-MSG-BODY$]]></content:encoded>
		<pubDate>Thu, 17 Jul 2008 14:55:50 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/pde-build-dev/msg00675.html</guid>
		<author>garcia@xxxxxxx (Ariel Garcia)</author>
	</item>
	<item>
		<title>Re: [pde-build-dev] Build multiple features in one run of PDE</title>
		<link>http://dev.eclipse.org/mhonarc/lists/pde-build-dev/msg00674.html</link>
		<description>yes you can, you have list them both in the &amp;quot;allElements.xml&amp;quot; file, modifying the allelementsDelegator target. It would look like this, change the &amp;quot;value&amp;quot; entries: &amp;lt;target name=&amp;quot;allElementsDelegator&amp;quot;&amp;gt; &amp;lt;ant antfile=ot;${genericTargets}&amp;quot; target=&amp;quot;${target}ot;...</description>
		<content:encoded><![CDATA[$X-MSG-BODY$]]></content:encoded>
		<pubDate>Thu, 17 Jul 2008 14:34:55 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/pde-build-dev/msg00674.html</guid>
		<author>mark_russell@xxxxxxx (Mark Russell)</author>
	</item>
	<item>
		<title>Re: [pde-build-dev] Build multiple features in one run of PDE</title>
		<link>http://dev.eclipse.org/mhonarc/lists/pde-build-dev/msg00673.html</link>
		<description>Hi Mark, yes you can, you have list them both in the &amp;quot;allElements.xml&amp;quot; file, modifying the allelementsDelegator target. It would look like this, change the &amp;quot;value&amp;quot; entries: &amp;lt;target name=&amp;quot;allElementsDelegator&amp;quot;&amp;gt; &amp;lt;ant antfile=&amp;quot;${genericTargets}&amp;quot; target=&amp;quot;${tar...</description>
		<content:encoded><![CDATA[$X-MSG-BODY$]]></content:encoded>
		<pubDate>Thu, 17 Jul 2008 14:31:36 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/pde-build-dev/msg00673.html</guid>
		<author>garcia@xxxxxxx (Ariel Garcia)</author>
	</item>
	<item>
		<title>[pde-build-dev] Build multiple features in one run of PDE</title>
		<link>http://dev.eclipse.org/mhonarc/lists/pde-build-dev/msg00672.html</link>
		<description>If I have two features that I want to build. Can I build then in one run of the PDE build? If so How do I do that? -- Mark Russell Instantiations, Inc. http://www.instantiations.com Attachment: smime.p7s Description: S/MIME Cryptographic Signature </description>
		<content:encoded><![CDATA[$X-MSG-BODY$]]></content:encoded>
		<pubDate>Thu, 17 Jul 2008 14:13:07 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/pde-build-dev/msg00672.html</guid>
		<author>mark_russell@xxxxxxx (Mark Russell)</author>
	</item>


	<item>
		<title>[pde-build-dev] PDE Build packaging</title>
		<link>http://dev.eclipse.org/mhonarc/lists/pde-build-dev/msg00671.html</link>
		<description>I am trying out feature based headless build. The build works fine with all the artifacts generated as expected. On running my application, BundleException and ClassNotFoundExceptions are raised. After spending some time understanding the problem, I discov...</description>
		<content:encoded><![CDATA[$X-MSG-BODY$]]></content:encoded>
		<pubDate>Fri, 04 Jul 2008 11:07:14 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/pde-build-dev/msg00671.html</guid>
		<author>neerajbhusare@xxxxxxx (neeraj bhusare)</author>
	</item>


	<item>
		<title>[pde-build-dev] headless build of a product without any features</title>
		<link>http://dev.eclipse.org/mhonarc/lists/pde-build-dev/msg00670.html</link>
		<description> We are trying to build an RCP product using the headless build which contains no features and only one workspace plugin.  The product definition and the plugin are both in the same workspace project. Initially the headless build worked when the product co...</description>
		<content:encoded><![CDATA[$X-MSG-BODY$]]></content:encoded>
		<pubDate>Wed, 02 Jul 2008 17:59:08 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/pde-build-dev/msg00670.html</guid>
		<author>jacob.x.pezaro@xxxxxxx (jacob . x . pezaro)</author>
	</item>


	<item>
		<title>Re: [pde-build-dev] New Environment Setup</title>
		<link>http://dev.eclipse.org/mhonarc/lists/pde-build-dev/msg00669.html</link>
		<description> I don't believe there is any script that will get you everything.  Although some groups within the platform use project sets that you can import (See for example dev.eclipse.org/cvsroot/eclipse/org.eclipse.equinox/p2/org.eclipse.equinox.p2.releng/projectS...</description>
		<content:encoded><![CDATA[$X-MSG-BODY$]]></content:encoded>
		<pubDate>Thu, 26 Jun 2008 14:55:40 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/pde-build-dev/msg00669.html</guid>
		<author>aniefer@xxxxxxx (Andrew Niefer)</author>
	</item>


	<item>
		<title>[pde-build-dev] New Environment Setup</title>
		<link>http://dev.eclipse.org/mhonarc/lists/pde-build-dev/msg00668.html</link>
		<description>Hi, I'm a new Eclipse developer although pretty well seasoned in Java and have even done some RCP development. I am just looking to pull down the nightly code from eclipse so I can do some tinkering, but I am not sure where to start. Is there a build scrip...</description>
		<content:encoded><![CDATA[$X-MSG-BODY$]]></content:encoded>
		<pubDate>Wed, 25 Jun 2008 21:29:51 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/lists/pde-build-dev/msg00668.html</guid>
		<author>rob.bercik@xxxxxxx (Rob Bercik)</author>
	</item>

 
	</channel>
	</rss>
<!-- MHonArc v2.6.10 -->
