Is there a SIMPLE example of How to use buckminster - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T11:33:39Zhttp://stackoverflow.com/feeds/question/552722http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/552722/is-there-a-simple-example-of-how-to-use-buckminster2Is there a SIMPLE example of How to use buckminsterMauli2009-02-16T09:25:03Z2009-07-02T12:23:17Z
<p>I don't understand buckminster at all. Lets say I have a project, and it needs log4j and junit4. How do I get started, what do I need to do, to specify the dependencies and have the dependencies added to my classpath in eclipse. Is there any tutorial which shows how its done?</p>
http://stackoverflow.com/questions/552722/is-there-a-simple-example-of-how-to-use-buckminster/554611#5546114Answer by jamesh for Is there a SIMPLE example of How to use buckminsterjamesh2009-02-16T21:22:10Z2009-02-16T21:22:10Z<p>I found buckminster brilliant, but <em>terribly</em> documented (I know, I know, I should contribute).</p>
<p>I was looking for something to build RCP products. I won't talk too much more about that, but I will say what worked for me:</p>
<ul>
<li>The "<a href="http://live.eclipse.org/node/427" rel="nofollow">webinar</a>" showed me roughly what I could do, and I found myself going back to it a couple of times to start with.</li>
<li>Try to get your project checked out into your workspace. This involves:
<ol>
<li>installing buckminster on your Eclipse installation</li>
<li>creating a small CQUERY file, which is 3 lines of XML telling buckminster what to check out.</li>
<li>creating an RMAP file for your projects. I found this <a href="http://www.eclipse.org/buckminster/samples/rmaps/dogfood2.rmap" rel="nofollow">dogfood2.rmap</a> very helpful.</li>
</ol></li>
</ul>
<p>Thankfully, I am able to completely ignore CSPEC files, as they can be inferred from the existing metadata (i.e. from <code>MANIFEST.MF</code>, <code>plugin.xml</code>, <code>.product</code> files. I think it can work of the <code>.project</code> and <code>.classpath</code> files, but I don't _k_now). Similarly, I would ignore BOM files for now.</p>
<p>Once I had materialized a workspace successfully, I could go on to try and replicate that headlessly. </p>
<p>This <a href="http://wiki.eclipse.org/Sample_headless_configuration_(Buckminster)" rel="nofollow">article</a> I found useful to create an installation for Buckminster suitable for deploying as part of our continuous integration. </p>
<p>At this point, I had a long think about the relationships between the Eclipse projects used to build up the product. We settled on a tree (sic) with two major branches - the product branch and the test branch:</p>
<ul>
<li>cquery points to a <code>build.feature</code></li>
<li><code>build.feature</code> points to a <code>product</code> and a <code>test.product</code>.</li>
<li><code>product</code> points to features <code>foo.feature</code>, <code>foo.ui.feature</code>, <code>bar.feature</code>, <code>bar.ui.feature</code>. Each of these features point to plugins or features.</li>
<li><code>test.product</code> points to <code>foo.test.feature</code>, <code>foo.ui.test.feature</code>, <code>bar.test.feature</code>, <code>bar.ui.test.feature</code>. Each of these features point to test fragments that can exercise the product plugins.</li>
</ul>
<p>By "point to", I mean the feature or cquery specifies it as a dependency. (I couldn't seem to get the <code>Require-Bundle</code> header in the manifest file to work, so put everything in the <code>feature.xml</code>). </p>
<p>I found playing on the command line very helpful at this stage. The <code>resolve</code> and <code>build</code> commands I found most helpful. I also found setting the <a href="http://www.nabble.com/how-to-change-buckminster.temp-property--td21448059.html" rel="nofollow">output property</a> useful here.</p>
<p>Once I could build (i.e. compile) everything successfully, packaging it as a product was the next thing. Using the <code>perform</code> command for an action (<code>create.*.product</code>) specified in an inferred CSPEC file generated from a .product file was hardly intuitive, but it helped to have a known good product capable of being exported as a product from the IDE.</p>
<p>The last thing I did was to find the <code>setenv</code> (I think) command, which helped set the Java version used to compile the code. There are a small number of properties you can set, but this one was the one I needed.</p>
<p><a href="http://developer.capeclear.com/7.5.1/help/index.jsp?topic=/com.capeclear.eclipse.studiohelp/studio/automation-ant.html" rel="nofollow">Other</a> <a href="http://dev.eclipse.org/newslists/news.eclipse.technology.buckminster/msg00516.html" rel="nofollow">links</a> <a href="http://eclipse-projects.blogspot.com/2006/05/buckminster-for-monkey.html" rel="nofollow">I</a> also found latterly, that look helpful.</p>
http://stackoverflow.com/questions/552722/is-there-a-simple-example-of-how-to-use-buckminster/556920#5569201Answer by jon077 for Is there a SIMPLE example of How to use buckminsterjon0772009-02-17T14:01:53Z2009-02-17T14:01:53Z<p>From: <a href="http://wiki.eclipse.org/index.php/Introduction_to_Buckminster#Getting_Started" rel="nofollow">http://wiki.eclipse.org/index.php/Introduction_to_Buckminster#Getting_Started</a></p>
<p>Hello World: <a href="http://wiki.eclipse.org/index.php/Hello_XML_World_Example_" rel="nofollow">http://wiki.eclipse.org/index.php/Hello_XML_World_Example_</a>(Buckminster)</p>
http://stackoverflow.com/questions/552722/is-there-a-simple-example-of-how-to-use-buckminster/1074052#10740523Answer by Henrik Lindberg for Is there a SIMPLE example of How to use buckminsterHenrik Lindberg2009-07-02T12:23:17Z2009-07-02T12:23:17Z<p>Hi,
New Buckminster documentation is being produced right now. The first "rough cut" contains introduction (based on Eclipse '09 talk), RMAP and CQUERY fully explained, details on properties, and versions. These chapters have about 70 pages, and are in near finished form. More chapters and examples to follow. Hope to make a new draft available weekly.</p>
<p>You can get it here: <a href="http://www.eclipse.org/downloads/download.php?file=/tools/buckminster/doc/BuckyBook.pdf" rel="nofollow">http://www.eclipse.org/downloads/download.php?file=/tools/buckminster/doc/BuckyBook.pdf</a> (6MB).</p>