<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:www.nabble.com,2006:forum-28729</id>
	<title>Nabble - Buildr</title>
	<updated>2008-10-11T05:51:11Z</updated>
	<link rel="self" type="application/atom+xml" href="http://www.nabble.com/Buildr-f28729.xml" />
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Buildr-f28729.html" />
	<subtitle type="html">&lt;a href=&quot;http://incubator.apache.org/projects/buildr.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Buildr&lt;/a&gt;&amp;nbsp;is a build system for Java applications written in Ruby. We wanted something that's simple and intuitive to use, so we only need to tell it what to do, and it takes care of the rest. But also something we can easily extend for those one-off tasks, with a language that?s a joy to use. And of course, we wanted it to be fast, reliable and have outstanding dependency management.</subtitle>
	
<entry>
	<id>tag:www.nabble.com,2006:post-19932354</id>
	<title>Re: Problem compiling with buildr</title>
	<published>2008-10-11T05:51:11Z</published>
	<updated>2008-10-11T05:51:11Z</updated>
	<author>
		<name>chihiro</name>
	</author>
	<content type="html">Lacton,
&lt;br&gt;&lt;br&gt;Here's the output:-
&lt;br&gt;&lt;br&gt;c:/_programs/jdk1.6.0_04/jre/lib/tools.jar false
&lt;br&gt;c:/_programs/jdk1.6.0_04/lib/tools.jar true
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;lacton wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;Sorry to ask you one more time, but will you try the following command
&lt;br&gt;in your environment?
&lt;br&gt;&lt;br&gt;jruby -e &amp;quot;['lib/tools.jar', '../lib/tools.jar'].map { |path|
&lt;br&gt;File.expand_path(path, Java.java.lang.System.getProperty('java.home'))
&lt;br&gt;}.each { |f| puts %{#{f} #{File.exist?(f)}} }&amp;quot;
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---User-f28730.html&quot; embed=&quot;fixTarget[28730]&quot; target=&quot;_top&quot; &gt;Buildr - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-compiling-with-buildr-tp19858629p19932354.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19931476</id>
	<title>Re: Manifest</title>
	<published>2008-10-11T03:43:45Z</published>
	<updated>2008-10-11T03:43:45Z</updated>
	<author>
		<name>Ittay Dror</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;Nagaraj wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; While creating a jar file, I am adding manifest.mf using
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; package(:jar).with :manifest=&amp;gt;_(&amp;quot;META-INF/MANIFEST.MF&amp;quot;) &amp;nbsp;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Now I want to dynamically set the value of Bundle-Version in manifest.mf. 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I tried the following in the buildfile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;package(:jar).with
&lt;br&gt;&amp;gt; :manifest=&amp;gt;manifest.replace('Bundle-Version'=&amp;gt;VERSION_NUMBER) 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; But it is not working. Is there any way I can achieve this? I am new to Ruby
&lt;br&gt;&amp;gt; and Buildr.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;Maybe try this? (didn't test it)
&lt;br&gt;package(:jar).prepare do |jar|
&lt;br&gt;&amp;nbsp; &amp;nbsp;jar.manifest = 
&lt;br&gt;Buildr::Packaging::Java::Manifest.new('META-INF/MANIFEST.mf')
&lt;br&gt;&amp;nbsp; &amp;nbsp;jar.manifest.main['Bundle-Version'] = VERSION_NUMBER
&lt;br&gt;end
&lt;br&gt;&lt;br&gt;Ittay
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Thanks in advance
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Nagaraj
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; _____ &amp;nbsp;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Visit us for next &amp;lt;&lt;a href=&quot;http://www.aatmani.com/Aatmani/adclick?adprintid=610&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.aatmani.com/Aatmani/adclick?adprintid=610&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; generation innovative solutions
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;--
&lt;br&gt;Ittay Dror &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19931476&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ittay.dror@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---User-f28730.html&quot; embed=&quot;fixTarget[28730]&quot; target=&quot;_top&quot; &gt;Buildr - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Manifest-tp19921715p19931476.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19931307</id>
	<title>Re: Problem compiling with buildr</title>
	<published>2008-10-11T03:16:06Z</published>
	<updated>2008-10-11T03:16:06Z</updated>
	<author>
		<name>lacton</name>
	</author>
	<content type="html">On Fri, Oct 10, 2008 at 3:51 AM, chihiro &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19931307&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gavin.emploi@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Yes. It is pointing to a jre.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; $ jruby -e &amp;quot;puts Java.java.lang.System.getProperty('java.home')&amp;quot;
&lt;br&gt;&amp;gt; c:\_programs\jdk1.6.0_04\jre
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; But,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; $ echo $JAVA_HOME
&lt;br&gt;&amp;gt; C:\_programs\jdk1.6.0_04
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'll have to figure out why the &amp;quot;jre&amp;quot; is appended to JAVA_HOME.
&lt;/div&gt;&lt;br&gt;I still wonder why buildr cannot find tools.jar. Buildr should know
&lt;br&gt;how to handle this case.
&lt;br&gt;&lt;br&gt;Sorry to ask you one more time, but will you try the following command
&lt;br&gt;in your environment?
&lt;br&gt;&lt;br&gt;jruby -e &amp;quot;['lib/tools.jar', '../lib/tools.jar'].map { |path|
&lt;br&gt;File.expand_path(path, Java.java.lang.System.getProperty('java.home'))
&lt;br&gt;}.each { |f| puts %{#{f} #{File.exist?(f)}} }&amp;quot;
&lt;br&gt;&lt;br&gt;Lacton
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---User-f28730.html&quot; embed=&quot;fixTarget[28730]&quot; target=&quot;_top&quot; &gt;Buildr - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-compiling-with-buildr-tp19858629p19931307.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19931053</id>
	<title>Re: Manifest</title>
	<published>2008-10-11T02:36:37Z</published>
	<updated>2008-10-11T02:36:37Z</updated>
	<author>
		<name>lacton</name>
	</author>
	<content type="html">On Fri, Oct 10, 2008 at 6:29 PM, Nagaraj &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19931053&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nagaraj@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; While creating a jar file, I am adding manifest.mf using
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;package(:jar).with :manifest=&amp;gt;_(&amp;quot;META-INF/MANIFEST.MF&amp;quot;)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Now I want to dynamically set the value of Bundle-Version in manifest.mf.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I tried the following in the buildfile
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; package(:jar).with
&lt;br&gt;&amp;gt; :manifest=&amp;gt;manifest.replace('Bundle-Version'=&amp;gt;VERSION_NUMBER)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; But it is not working. Is there any way I can achieve this? I am new to Ruby
&lt;br&gt;&amp;gt; and Buildr.
&lt;/div&gt;&lt;br&gt;I can think of two ways to achieve this.
&lt;br&gt;&lt;br&gt;One way would be to get rid of the file and use only a hash or the
&lt;br&gt;project manifest properties.
&lt;br&gt;&lt;br&gt;E.g.,
&lt;br&gt;&lt;br&gt;package(:jar).with :manifest=&amp;gt;{ 'Implementation-Title'=&amp;gt;'foo',
&lt;br&gt;'Bundle-Version'=&amp;gt;VERSION_NUMBER }
&lt;br&gt;&lt;br&gt;OR
&lt;br&gt;&lt;br&gt;manifest['Implementation-Title'] = 'foo'
&lt;br&gt;manifest['Bundle-Version'] = VERSION_NUMBER
&lt;br&gt;package(:jar)
&lt;br&gt;&lt;br&gt;Another way would be to use a filter on your source file.
&lt;br&gt;&lt;br&gt;E.g.,
&lt;br&gt;&lt;br&gt;Your file src/main/resources/META-INF/MANIFEST.MF contains
&lt;br&gt;Implementation-Title: foo
&lt;br&gt;Bundle-Version: ${version}
&lt;br&gt;&lt;br&gt;Your buildfile contains
&lt;br&gt;resources.filter.using 'version'=&amp;gt;VERSION_NUMBER
&lt;br&gt;package(:jar).with :manifest=&amp;gt;_('target/resources/META-INF/MANIFEST.MF')
&lt;br&gt;&lt;br&gt;Cheers.
&lt;br&gt;&lt;br&gt;Lacton
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---User-f28730.html&quot; embed=&quot;fixTarget[28730]&quot; target=&quot;_top&quot; &gt;Buildr - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Manifest-tp19921715p19931053.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19921715</id>
	<title>Manifest</title>
	<published>2008-10-10T09:29:47Z</published>
	<updated>2008-10-10T09:29:47Z</updated>
	<author>
		<name>Nagaraj-3</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;While creating a jar file, I am adding manifest.mf using
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; package(:jar).with :manifest=&amp;gt;_(&amp;quot;META-INF/MANIFEST.MF&amp;quot;) &amp;nbsp;
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;Now I want to dynamically set the value of Bundle-Version in manifest.mf. 
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;I tried the following in the buildfile
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;package(:jar).with
&lt;br&gt;:manifest=&amp;gt;manifest.replace('Bundle-Version'=&amp;gt;VERSION_NUMBER) 
&lt;br&gt;&lt;br&gt;&amp;nbsp; 
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;But it is not working. Is there any way I can achieve this? I am new to Ruby
&lt;br&gt;and Buildr.
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;Thanks in advance
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;Nagaraj
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&amp;nbsp; _____ &amp;nbsp;
&lt;br&gt;&lt;br&gt;Visit us for next &amp;lt;&lt;a href=&quot;http://www.aatmani.com/Aatmani/adclick?adprintid=610&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.aatmani.com/Aatmani/adclick?adprintid=610&lt;/a&gt;&amp;gt;
&lt;br&gt;generation innovative solutions
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---User-f28730.html&quot; embed=&quot;fixTarget[28730]&quot; target=&quot;_top&quot; &gt;Buildr - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Manifest-tp19921715p19921715.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19918660</id>
	<title>Re: [VOTE] Buildr 1.3.3 release</title>
	<published>2008-10-10T06:42:05Z</published>
	<updated>2008-10-10T06:42:05Z</updated>
	<author>
		<name>Jim Jagielski</name>
	</author>
	<content type="html">&lt;br&gt;On Oct 8, 2008, at 5:32 PM, Assaf Arkin wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; We're voting on the source distributions available here:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://people.apache.org/~assaf/buildr/1.3.3/distro/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/1.3.3/distro/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;+1
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---Dev-f28731.html&quot; embed=&quot;fixTarget[28731]&quot; target=&quot;_top&quot; &gt;Buildr - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-VOTE--Buildr-1.3.3-release-tp19888028p19918660.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19914114</id>
	<title>Re: buildr eclipse - bug?</title>
	<published>2008-10-10T01:31:38Z</published>
	<updated>2008-10-10T01:31:38Z</updated>
	<author>
		<name>Anders_Asplund</name>
	</author>
	<content type="html">&lt;br&gt;Hi Alex,
&lt;br&gt;&lt;br&gt;I've opened an Jira issue but I can't find where to attach test case so I do
&lt;br&gt;it here and link this thread in the 
&lt;br&gt;&lt;a href=&quot;http://issues.apache.org/jira/browse/BUILDR-169&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://issues.apache.org/jira/browse/BUILDR-169&lt;/a&gt;&amp;nbsp;jira issue .
&lt;br&gt;&lt;a href=&quot;http://n2.nabble.com/file/n1315616/buildr-bug.tar.gz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://n2.nabble.com/file/n1315616/buildr-bug.tar.gz&lt;/a&gt;&amp;nbsp;buildr-bug.tar.gz 
&lt;br&gt;&lt;br&gt;I've also created a fix in my local eclipse.rb. I'm not a ruby developer so
&lt;br&gt;you have to take the fix for what it is... :) I've marked my changes with
&lt;br&gt;#******* Changed By Anders Asplund *********.
&lt;br&gt;&lt;a href=&quot;http://n2.nabble.com/file/n1315616/eclipse.rb&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://n2.nabble.com/file/n1315616/eclipse.rb&lt;/a&gt;&amp;nbsp;eclipse.rb 
&lt;br&gt;&lt;br&gt;&lt;br&gt;Thank you for your quick response!
&lt;br&gt;&lt;br&gt;/Anders
&lt;br&gt;&lt;br&gt;&lt;br&gt;Alex Boisvert wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; It definitely sounds like a bug. &amp;nbsp; Can you open a Jira issue?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; If you could provide a small test case (Buildfile + a couple of dummy
&lt;br&gt;&amp;gt; source
&lt;br&gt;&amp;gt; files) to reproduce it, I'm pretty sure we can fix it quickly.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; alex
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On Fri, Oct 10, 2008 at 4:09 PM, Anders_Asplund
&lt;br&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19914114&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;aasplund@...&lt;/a&gt;&amp;gt;wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I'm trying to setup en existing eclipse project using buildr in a windows
&lt;br&gt;&amp;gt;&amp;gt; environment. My project consists of several eclipse projects using
&lt;br&gt;&amp;gt;&amp;gt; project
&lt;br&gt;&amp;gt;&amp;gt; dependencies to link them together.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Ex. Project A depends on project B:
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://n2.nabble.com/file/n1315442/Screenshot-Properties%2Bfor%2BB%2B.png&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://n2.nabble.com/file/n1315442/Screenshot-Properties%2Bfor%2BB%2B.png&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Since eclipse doesn't support hierarchical projects they have to be on
&lt;br&gt;&amp;gt;&amp;gt; the
&lt;br&gt;&amp;gt;&amp;gt; same level but when I setup my buildfile I have to put them both in a
&lt;br&gt;&amp;gt;&amp;gt; parent-project so that I can relate A from B.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Ex.
&lt;br&gt;&amp;gt;&amp;gt; define 'my-app' do
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;...
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;desc 'Project A'
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;define 'A' do
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;end
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;desc 'Project B'
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;define 'B' do
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; compile.with projects('A')
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;end
&lt;br&gt;&amp;gt;&amp;gt; end
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; When I then try to run buildr eclipse to generate the eclipse artifacts
&lt;br&gt;&amp;gt;&amp;gt; the
&lt;br&gt;&amp;gt;&amp;gt; project relation in eclipse becomes corrupt. Instead of pointing to /A it
&lt;br&gt;&amp;gt;&amp;gt; points to /my-app-A.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Ex.
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://n2.nabble.com/file/n1315442/Screenshot-Properties%2Bfor%2BB%2B-1.png&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://n2.nabble.com/file/n1315442/Screenshot-Properties%2Bfor%2BB%2B-1.png&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; When I look in the source code for eclipse.rb I can see that it adds
&lt;br&gt;&amp;gt;&amp;gt; project.id to the .classpath file. I can also se that it adds the
&lt;br&gt;&amp;gt;&amp;gt; project.id
&lt;br&gt;&amp;gt;&amp;gt; in as the name of the project i the .project file. I've tried several
&lt;br&gt;&amp;gt;&amp;gt; workarounds for this but haven't come up with a solution.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; So my question is: Is there a solution for this or is it a bug?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; /Anders
&lt;br&gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://n2.nabble.com/buildr-eclipse---bug--tp1315442p1315442.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://n2.nabble.com/buildr-eclipse---bug--tp1315442p1315442.html&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; Sent from the Apache Buildr - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;View this message in context: &lt;a href=&quot;http://n2.nabble.com/buildr-eclipse---bug--tp1315442p1315616.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://n2.nabble.com/buildr-eclipse---bug--tp1315442p1315616.html&lt;/a&gt;&lt;br&gt;Sent from the Apache Buildr - User mailing list archive at Nabble.com.
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---User-f28730.html&quot; embed=&quot;fixTarget[28730]&quot; target=&quot;_top&quot; &gt;Buildr - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/buildr-eclipse---bug--tp19913104p19914114.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19913524</id>
	<title>Re: Error installing buildr</title>
	<published>2008-10-10T00:45:10Z</published>
	<updated>2008-10-10T00:45:10Z</updated>
	<author>
		<name>Anders_Asplund</name>
	</author>
	<content type="html">&lt;br&gt;Hi Alex,
&lt;br&gt;&lt;br&gt;Thank you for your reply!
&lt;br&gt;&lt;br&gt;After figuring out my proxy-settings I could set the HTTP_PROXY environment
&lt;br&gt;variable and it worked just fine!
&lt;br&gt;&lt;br&gt;/Anders
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Alex Boisvert wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Hi Anders,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; You're on the right track. &amp;nbsp;In this case you need to install dependencies
&lt;br&gt;&amp;gt; manually, such as:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; jruby -S gem install builder -v 2.1.2
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; (buildr and builder &amp;lt;&lt;a href=&quot;http://builder.rubyforge.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://builder.rubyforge.org/&lt;/a&gt;&amp;gt; are different gems)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; You'll need to repeat this for other dependencies that are not currently
&lt;br&gt;&amp;gt; installed.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; alex
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On Mon, Oct 6, 2008 at 10:41 PM, Anders Asplund
&lt;br&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19913524&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;aasplund@...&lt;/a&gt;&amp;gt;wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I'm trying to install Buildr but the following error message occurs when
&lt;br&gt;&amp;gt;&amp;gt; I
&lt;br&gt;&amp;gt;&amp;gt; executes jruby -S gem update buildr.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; JRuby limited openssl loaded. gem install jruby-openssl for full support.
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://wiki.jruby.org/wiki/JRuby_Builtin_OpenSSLERROR:&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.jruby.org/wiki/JRuby_Builtin_OpenSSLERROR:&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://gems.rubyforge.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gems.rubyforge.org/&lt;/a&gt;&amp;nbsp;does not appear to be a repositoryERROR: 
&lt;br&gt;&amp;gt;&amp;gt; Error
&lt;br&gt;&amp;gt;&amp;gt; installing buildr: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;buildr requires builder (= 2.1.2, runtime)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Since I'm sitting behinde a firewall I also tried to download the
&lt;br&gt;&amp;gt;&amp;gt; buildr-1.3.2-java-incubating.gem and installed it using jruby -S gem
&lt;br&gt;&amp;gt;&amp;gt; update
&lt;br&gt;&amp;gt;&amp;gt; buildr-1.3.2-java-incubating.gem but with the same result.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; As you can see I'm using JRuby and I'm a complete novice in this area so
&lt;br&gt;&amp;gt;&amp;gt; please excuse me if the solution is obvious.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Thank you in advance!
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; /Anders
&lt;br&gt;&amp;gt;&amp;gt; _________________________________________________________________
&lt;br&gt;&amp;gt;&amp;gt; Senaste sportnyheterna &amp; rykande färska resultat!
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://sport.msn.se/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sport.msn.se/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;View this message in context: &lt;a href=&quot;http://n2.nabble.com/Error-installing-buildr-tp1308918p1315506.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://n2.nabble.com/Error-installing-buildr-tp1308918p1315506.html&lt;/a&gt;&lt;br&gt;Sent from the Apache Buildr - User mailing list archive at Nabble.com.
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---User-f28730.html&quot; embed=&quot;fixTarget[28730]&quot; target=&quot;_top&quot; &gt;Buildr - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Error-installing-buildr-tp19893368p19913524.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19913364</id>
	<title>Re: buildr eclipse - bug?</title>
	<published>2008-10-10T00:33:23Z</published>
	<updated>2008-10-10T00:33:23Z</updated>
	<author>
		<name>Alex Boisvert-3</name>
	</author>
	<content type="html">It definitely sounds like a bug. &amp;nbsp; Can you open a Jira issue?
&lt;br&gt;&lt;br&gt;If you could provide a small test case (Buildfile + a couple of dummy source
&lt;br&gt;files) to reproduce it, I'm pretty sure we can fix it quickly.
&lt;br&gt;&lt;br&gt;alex
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Fri, Oct 10, 2008 at 4:09 PM, Anders_Asplund &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19913364&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;aasplund@...&lt;/a&gt;&amp;gt;wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm trying to setup en existing eclipse project using buildr in a windows
&lt;br&gt;&amp;gt; environment. My project consists of several eclipse projects using project
&lt;br&gt;&amp;gt; dependencies to link them together.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Ex. Project A depends on project B:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://n2.nabble.com/file/n1315442/Screenshot-Properties%2Bfor%2BB%2B.png&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://n2.nabble.com/file/n1315442/Screenshot-Properties%2Bfor%2BB%2B.png&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Since eclipse doesn't support hierarchical projects they have to be on the
&lt;br&gt;&amp;gt; same level but when I setup my buildfile I have to put them both in a
&lt;br&gt;&amp;gt; parent-project so that I can relate A from B.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Ex.
&lt;br&gt;&amp;gt; define 'my-app' do
&lt;br&gt;&amp;gt; &amp;nbsp;...
&lt;br&gt;&amp;gt; &amp;nbsp;desc 'Project A'
&lt;br&gt;&amp;gt; &amp;nbsp;define 'A' do
&lt;br&gt;&amp;gt; &amp;nbsp;end
&lt;br&gt;&amp;gt; &amp;nbsp;desc 'Project B'
&lt;br&gt;&amp;gt; &amp;nbsp;define 'B' do
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; compile.with projects('A')
&lt;br&gt;&amp;gt; &amp;nbsp;end
&lt;br&gt;&amp;gt; end
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; When I then try to run buildr eclipse to generate the eclipse artifacts the
&lt;br&gt;&amp;gt; project relation in eclipse becomes corrupt. Instead of pointing to /A it
&lt;br&gt;&amp;gt; points to /my-app-A.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Ex.
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://n2.nabble.com/file/n1315442/Screenshot-Properties%2Bfor%2BB%2B-1.png&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://n2.nabble.com/file/n1315442/Screenshot-Properties%2Bfor%2BB%2B-1.png&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; When I look in the source code for eclipse.rb I can see that it adds
&lt;br&gt;&amp;gt; project.id to the .classpath file. I can also se that it adds the
&lt;br&gt;&amp;gt; project.id
&lt;br&gt;&amp;gt; in as the name of the project i the .project file. I've tried several
&lt;br&gt;&amp;gt; workarounds for this but haven't come up with a solution.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; So my question is: Is there a solution for this or is it a bug?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; /Anders
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://n2.nabble.com/buildr-eclipse---bug--tp1315442p1315442.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://n2.nabble.com/buildr-eclipse---bug--tp1315442p1315442.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the Apache Buildr - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---User-f28730.html&quot; embed=&quot;fixTarget[28730]&quot; target=&quot;_top&quot; &gt;Buildr - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/buildr-eclipse---bug--tp19913104p19913364.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19913104</id>
	<title>buildr eclipse - bug?</title>
	<published>2008-10-10T00:09:10Z</published>
	<updated>2008-10-10T00:09:10Z</updated>
	<author>
		<name>Anders_Asplund</name>
	</author>
	<content type="html">&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;I'm trying to setup en existing eclipse project using buildr in a windows
&lt;br&gt;environment. My project consists of several eclipse projects using project
&lt;br&gt;dependencies to link them together.
&lt;br&gt;&lt;br&gt;Ex. Project A depends on project B:
&lt;br&gt;&lt;a href=&quot;http://n2.nabble.com/file/n1315442/Screenshot-Properties%2Bfor%2BB%2B.png&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://n2.nabble.com/file/n1315442/Screenshot-Properties%2Bfor%2BB%2B.png&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;Since eclipse doesn't support hierarchical projects they have to be on the
&lt;br&gt;same level but when I setup my buildfile I have to put them both in a
&lt;br&gt;parent-project so that I can relate A from B. 
&lt;br&gt;&lt;br&gt;Ex. 
&lt;br&gt;define 'my-app' do
&lt;br&gt;&amp;nbsp;...
&lt;br&gt;&amp;nbsp; desc 'Project A'
&lt;br&gt;&amp;nbsp; define 'A' do
&lt;br&gt;&amp;nbsp; end
&lt;br&gt;&amp;nbsp; desc 'Project B'
&lt;br&gt;&amp;nbsp; define 'B' do
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;compile.with projects('A')
&lt;br&gt;&amp;nbsp; end
&lt;br&gt;end
&lt;br&gt;&lt;br&gt;When I then try to run buildr eclipse to generate the eclipse artifacts the
&lt;br&gt;project relation in eclipse becomes corrupt. Instead of pointing to /A it
&lt;br&gt;points to /my-app-A.
&lt;br&gt;&lt;br&gt;Ex.
&lt;br&gt;&lt;a href=&quot;http://n2.nabble.com/file/n1315442/Screenshot-Properties%2Bfor%2BB%2B-1.png&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://n2.nabble.com/file/n1315442/Screenshot-Properties%2Bfor%2BB%2B-1.png&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;When I look in the source code for eclipse.rb I can see that it adds 
&lt;br&gt;project.id to the .classpath file. I can also se that it adds the project.id
&lt;br&gt;in as the name of the project i the .project file. I've tried several
&lt;br&gt;workarounds for this but haven't come up with a solution.
&lt;br&gt;&lt;br&gt;&lt;br&gt;So my question is: Is there a solution for this or is it a bug?
&lt;br&gt;&lt;br&gt;/Anders
&lt;br&gt;-- 
&lt;br&gt;View this message in context: &lt;a href=&quot;http://n2.nabble.com/buildr-eclipse---bug--tp1315442p1315442.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://n2.nabble.com/buildr-eclipse---bug--tp1315442p1315442.html&lt;/a&gt;&lt;br&gt;Sent from the Apache Buildr - User mailing list archive at Nabble.com.
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---User-f28730.html&quot; embed=&quot;fixTarget[28730]&quot; target=&quot;_top&quot; &gt;Buildr - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/buildr-eclipse---bug--tp19913104p19913104.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19910517</id>
	<title>Re: Problem compiling with buildr</title>
	<published>2008-10-09T18:51:01Z</published>
	<updated>2008-10-09T18:51:01Z</updated>
	<author>
		<name>chihiro</name>
	</author>
	<content type="html">&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;lacton wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;Maybe jruby is pointing to a JRE instead of a JDK.
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
Yes. It is pointing to a jre.
&lt;br&gt;&lt;br&gt;$ jruby -e &amp;quot;puts Java.java.lang.System.getProperty('java.home')&amp;quot;
&lt;br&gt;c:\_programs\jdk1.6.0_04\jre
&lt;br&gt;&lt;br&gt;But,
&lt;br&gt;&lt;br&gt;$ echo $JAVA_HOME
&lt;br&gt;C:\_programs\jdk1.6.0_04
&lt;br&gt;&lt;br&gt;I'll have to figure out why the &amp;quot;jre&amp;quot; is appended to JAVA_HOME.
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;&lt;br&gt;Gavin&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---User-f28730.html&quot; embed=&quot;fixTarget[28730]&quot; target=&quot;_top&quot; &gt;Buildr - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-compiling-with-buildr-tp19858629p19910517.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19908135</id>
	<title>Re: [VOTE] Buildr 1.3.3 release</title>
	<published>2008-10-09T14:53:24Z</published>
	<updated>2008-10-09T14:53:24Z</updated>
	<author>
		<name>lacton</name>
	</author>
	<content type="html">On Wed, Oct 8, 2008 at 11:32 PM, Assaf Arkin &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19908135&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;arkin@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; We're voting on the source distributions available here:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://people.apache.org/~assaf/buildr/1.3.3/distro/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/1.3.3/distro/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Specifically:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://people.apache.org/~assaf/buildr/1.3.3/distro/buildr-1.3.3-incubating.tgz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/1.3.3/distro/buildr-1.3.3-incubating.tgz&lt;/a&gt;&lt;br&gt;&amp;gt; &lt;a href=&quot;http://people.apache.org/~assaf/buildr/1.3.3/distro/buildr-1.3.3-incubating.zip&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/1.3.3/distro/buildr-1.3.3-incubating.zip&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The documentation generated for this release is available here:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://people.apache.org/~assaf/buildr/1.3.3/site/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/1.3.3/site/&lt;/a&gt;&lt;br&gt;&amp;gt; &lt;a href=&quot;http://people.apache.org/~assaf/buildr/1.3.3/site/buildr.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/1.3.3/site/buildr.pdf&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The official specification against which this release was tested:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://people.apache.org/~assaf/buildr/1.3.3/site/specs.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/1.3.3/site/specs.html&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Test coverage report:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://people.apache.org/~assaf/buildr/1.3.3/site/coverage/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/1.3.3/site/coverage/index.html&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The following changes were made since 1.3.2:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; * Added: &amp;nbsp;JtestR support. Implemented pending jtestr specs.
&lt;br&gt;&amp;gt; * Added: &amp;nbsp;Growl notifications (OS X only).
&lt;br&gt;&amp;gt; * Added: &amp;nbsp;error, info and trace methods.
&lt;br&gt;&amp;gt; * Added: &amp;nbsp;Release task support for alternative SVN repository layout
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(e.g., &lt;a href=&quot;http://my.repo.org/trunk/foo&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://my.repo.org/trunk/foo&lt;/a&gt;).
&lt;br&gt;&amp;gt; * Added: &amp;nbsp;BUILDR-128 Emma support
&lt;br&gt;&amp;gt; * Added: &amp;nbsp;BUILDR-135. Extracted reusable replacement logic into Filter::Mapper
&lt;br&gt;&amp;gt; * Added: &amp;nbsp;BUILDR-148 It is now possible to set the version of various 3rd
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;party libraries from the build.yml file. &amp;nbsp;Supported libraries
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;include Ant and the various test and BDD frameworks.
&lt;br&gt;&amp;gt; * Change: Error reporting now shows 'buildr aborted!' (used to say rake),
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;more of the stack trace without running --trace, and when running
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;with supported terminal, error message is red.
&lt;br&gt;&amp;gt; * Change: Eclipse task updated to documented Scala plugin requirements
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(&lt;a href=&quot;http://www.scala-lang.org/node/94&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.scala-lang.org/node/94&lt;/a&gt;)
&lt;br&gt;&amp;gt; * Change: Buildr.application.buildfile returns a task instead of a String.
&lt;br&gt;&amp;gt; * Change: BUILDR-104 Buildr::group has :under and :version, but not :type.
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Now it has :type too (Lacton).
&lt;br&gt;&amp;gt; * Change: BUILDR-139 Incremental test run.
&lt;br&gt;&amp;gt; * Change: BUILDR-141 Removed NEXT_VERSION from release task.
&lt;br&gt;&amp;gt; * Change: BUILDR-148 ant-junit no longer included in root classpath, but
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;specified during taskdef.
&lt;br&gt;&amp;gt; * Change: BUILDR-153 To customize the SVN tag used by the release task, set
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Release.tag_name to either the tag value or a proc that takes the
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;version number and return the desired tag.
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;Should not display &amp;quot;(in `pwd`, development)&amp;quot; when using --quiet.
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;Release task's regexp to find either THIS_VERSION and VERSION_NUMBER.
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-106 download(artifact(...)=&amp;gt;url) broken in certain cases
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(Lacton).
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-108 Trace to explain why a compile is done (Lacton).
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-109 Failure of &amp;quot;Buildr::Filter should respond to :include and
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;use these inclusion patterns&amp;quot; (Lacton).
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-110 Error creating buildfile from POM when missing plugin
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;configuration (Geoffrey Ruscoe).
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-112 Using a user gem repository with 'rake setup' (Lacton).
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-114 Hash.from_java_properties does not behave
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;like java.util.Properties (Lacton).
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-116: TestTask should include the main compile target in its
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;dependencies, even when using non standard directories (Lacton).
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-117 Shared directory for both code and resources produces
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;duplicate Eclipse classpath entries (Nathan Hamblen)
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-119 Eclipse task does not accept test resource folders
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(Lacton)
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-122: eclipse task should not check for directory existence
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-123: eclipse task should honor ResourceTask's target directory
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-124 unzip(...).from_path does not work correctly without
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;include (Rhett Sutphin).
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-126 &amp;nbsp;Tests options are shared between unrelated projects when
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;using #options instead of #using (Lacton).
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-129. Modifying a project manifest should not alter it's
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;parent project manifest.
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-137 JRuby 1.1.3 and Buildr 1.3.2 don't appear to work
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(on Windows).
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-138 ScalaTest premature use of Buildr::Repositories
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;inconsistent with customizing locations.
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-152 Project.task fails when task name starts with a colon.
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-157 Tasks library not loaded from a submodule.
&lt;br&gt;&amp;gt; * Docs: &amp;nbsp; BUILDR-111 Troubleshoot tip when Buildr's bin directory shows up in
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;RUBYLIB (Geoffrey Ruscoe).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Assaf
&lt;/div&gt;&lt;br&gt;+1
&lt;br&gt;&lt;br&gt;Lacton
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---Dev-f28731.html&quot; embed=&quot;fixTarget[28731]&quot; target=&quot;_top&quot; &gt;Buildr - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-VOTE--Buildr-1.3.3-release-tp19888028p19908135.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19904398</id>
	<title>Re: Problem compiling with buildr</title>
	<published>2008-10-09T11:16:15Z</published>
	<updated>2008-10-09T11:16:15Z</updated>
	<author>
		<name>lacton</name>
	</author>
	<content type="html">On Thu, Oct 9, 2008 at 9:53 AM, chihiro &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19904398&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gavin.emploi@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; This is the output that I got.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; gavin@yoda /opt/jruby-1.1.4/lib/ruby/gems/1.8/gems/buildr-1.3.3-java
&lt;br&gt;&amp;gt; $ jruby -e &amp;quot;load '_buildr'; puts Java.tools_jar&amp;quot;
&lt;br&gt;&amp;gt; (in
&lt;br&gt;&amp;gt; C:/_programs/cygwin/opt/jruby-1.1.4/lib/ruby/gems/1.8/gems/buildr-1.3.3-java,
&lt;br&gt;&amp;gt; development)
&lt;br&gt;&amp;gt; No projects defined for directory
&lt;br&gt;&amp;gt; C:/_programs/cygwin/opt/jruby-1.1.4/lib/ruby/gems/1.8/gems/buildr-1.3.3-java?
&lt;br&gt;&amp;gt; [Completed] Your build has completed:
&lt;br&gt;&amp;gt; C:/_programs/cygwin/opt/jruby-1.1.4/lib/ruby/gems/1.8/gems/buildr-1.3.3-java
&lt;br&gt;&amp;gt; buildr default
&lt;br&gt;&amp;gt; Completed in 14.766s
&lt;br&gt;&amp;gt; nil
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Regards,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Gavin
&lt;/div&gt;&lt;br&gt;We're getting somewhere. &amp;nbsp;For some reason, Buildr cannot locate
&lt;br&gt;tools.jar, hence the 'nil' at the end of the output.
&lt;br&gt;&lt;br&gt;Can you try the following command?
&lt;br&gt;jruby -e 'puts Java.java.lang.System.getProperty(&amp;quot;java.home&amp;quot;)'
&lt;br&gt;&lt;br&gt;Maybe jruby is pointing to a JRE instead of a JDK.
&lt;br&gt;&lt;br&gt;Lacton
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---User-f28730.html&quot; embed=&quot;fixTarget[28730]&quot; target=&quot;_top&quot; &gt;Buildr - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-compiling-with-buildr-tp19858629p19904398.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19894120</id>
	<title>Re: Problem compiling with buildr</title>
	<published>2008-10-09T00:53:00Z</published>
	<updated>2008-10-09T00:53:00Z</updated>
	<author>
		<name>chihiro</name>
	</author>
	<content type="html">&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Assaf Arkin wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;In the Buildr source directory there's a file called _buildr, running:
&lt;br&gt;&lt;br&gt;jruby -e &amp;quot;load '_buildr' ; puts Java.tools_jar&amp;quot;
&lt;br&gt;&lt;br&gt;loads that file, initializing Buildr and then checks if Buildr can guess where tools.jar is
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
This is the output that I got.
&lt;br&gt;&lt;br&gt;gavin@yoda /opt/jruby-1.1.4/lib/ruby/gems/1.8/gems/buildr-1.3.3-java
&lt;br&gt;$ jruby -e &amp;quot;load '_buildr'; puts Java.tools_jar&amp;quot;
&lt;br&gt;(in C:/_programs/cygwin/opt/jruby-1.1.4/lib/ruby/gems/1.8/gems/buildr-1.3.3-java, development)
&lt;br&gt;No projects defined for directory C:/_programs/cygwin/opt/jruby-1.1.4/lib/ruby/gems/1.8/gems/buildr-1.3.3-java?
&lt;br&gt;[Completed] Your build has completed: C:/_programs/cygwin/opt/jruby-1.1.4/lib/ruby/gems/1.8/gems/buildr-1.3.3-java
&lt;br&gt;buildr default
&lt;br&gt;Completed in 14.766s
&lt;br&gt;nil
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&lt;br&gt;Gavin&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---User-f28730.html&quot; embed=&quot;fixTarget[28730]&quot; target=&quot;_top&quot; &gt;Buildr - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-compiling-with-buildr-tp19858629p19894120.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19894028</id>
	<title>Re: Problem compiling with buildr</title>
	<published>2008-10-09T00:46:21Z</published>
	<updated>2008-10-09T00:46:21Z</updated>
	<author>
		<name>chihiro</name>
	</author>
	<content type="html">Alex,
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Alex Boisvert-3 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;You might want to check that JAVA_HOME points to a JDK and not a JRE. 
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
$ echo $JAVA_HOME
&lt;br&gt;C:\_programs\jdk1.6.0_04
&lt;br&gt;&lt;br&gt;&lt;br&gt;$ echo $JRUBY_HOME
&lt;br&gt;/opt/jruby-1.1.4
&lt;br&gt;&lt;br&gt;&lt;br&gt;$ echo $PATH
&lt;br&gt;/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/cygdrive/c/_programs/jdk1.6.0_04/bin: ..snipped-for-brevity.. 
&lt;br&gt;:/cygdrive/c/_programs/apache-maven-2.0.9/bin:/opt/jruby-1.1.4/bin
&lt;br&gt;&lt;br&gt;&lt;br&gt;$ jar tvf $JAVA_HOME/lib/tools.jar | grep &amp;quot;com/sun/tools/javac/main/Main&amp;quot;
&lt;br&gt;&amp;nbsp; 1927 Fri Dec 14 00:59:12 SGT 2007 com/sun/tools/javac/main/Main$1.class
&lt;br&gt;&amp;nbsp; &amp;nbsp;489 Fri Dec 14 00:59:12 SGT 2007 com/sun/tools/javac/main/Main$2.class
&lt;br&gt;&amp;nbsp;10944 Fri Dec 14 00:59:12 SGT 2007 com/sun/tools/javac/main/Main.class
&lt;br&gt;&lt;br&gt;$ javac -version
&lt;br&gt;javac 1.6.0_04
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&lt;br&gt;Gavin
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---User-f28730.html&quot; embed=&quot;fixTarget[28730]&quot; target=&quot;_top&quot; &gt;Buildr - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-compiling-with-buildr-tp19858629p19894028.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19893509</id>
	<title>Re: Error installing buildr</title>
	<published>2008-10-09T00:01:19Z</published>
	<updated>2008-10-09T00:01:19Z</updated>
	<author>
		<name>Alex Boisvert-3</name>
	</author>
	<content type="html">Hi Anders,
&lt;br&gt;&lt;br&gt;You're on the right track. &amp;nbsp;In this case you need to install dependencies
&lt;br&gt;manually, such as:
&lt;br&gt;&lt;br&gt;jruby -S gem install builder -v 2.1.2
&lt;br&gt;&lt;br&gt;(buildr and builder &amp;lt;&lt;a href=&quot;http://builder.rubyforge.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://builder.rubyforge.org/&lt;/a&gt;&amp;gt; are different gems)
&lt;br&gt;&lt;br&gt;You'll need to repeat this for other dependencies that are not currently
&lt;br&gt;installed.
&lt;br&gt;&lt;br&gt;alex
&lt;br&gt;&lt;br&gt;On Mon, Oct 6, 2008 at 10:41 PM, Anders Asplund &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19893509&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;aasplund@...&lt;/a&gt;&amp;gt;wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm trying to install Buildr but the following error message occurs when I
&lt;br&gt;&amp;gt; executes jruby -S gem update buildr.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; JRuby limited openssl loaded. gem install jruby-openssl for full support.
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://wiki.jruby.org/wiki/JRuby_Builtin_OpenSSLERROR:&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.jruby.org/wiki/JRuby_Builtin_OpenSSLERROR:&lt;/a&gt;&lt;br&gt;&amp;gt; &lt;a href=&quot;http://gems.rubyforge.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gems.rubyforge.org/&lt;/a&gt;&amp;nbsp;does not appear to be a repositoryERROR: &amp;nbsp;Error
&lt;br&gt;&amp;gt; installing buildr: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;buildr requires builder (= 2.1.2, runtime)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Since I'm sitting behinde a firewall I also tried to download the
&lt;br&gt;&amp;gt; buildr-1.3.2-java-incubating.gem and installed it using jruby -S gem update
&lt;br&gt;&amp;gt; buildr-1.3.2-java-incubating.gem but with the same result.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; As you can see I'm using JRuby and I'm a complete novice in this area so
&lt;br&gt;&amp;gt; please excuse me if the solution is obvious.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thank you in advance!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; /Anders
&lt;br&gt;&amp;gt; _________________________________________________________________
&lt;br&gt;&amp;gt; Senaste sportnyheterna &amp; rykande färska resultat!
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://sport.msn.se/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sport.msn.se/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---User-f28730.html&quot; embed=&quot;fixTarget[28730]&quot; target=&quot;_top&quot; &gt;Buildr - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Error-installing-buildr-tp19893368p19893509.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19891690</id>
	<title>Re: Buildr.settings before buildfile located</title>
	<published>2008-10-08T20:30:17Z</published>
	<updated>2008-10-08T20:30:17Z</updated>
	<author>
		<name>Nicolas Modrzyk-4</name>
	</author>
	<content type="html">Ok I get it.
&lt;br&gt;The strange thing though, is that right now it only failed for groups,
&lt;br&gt;not for standalone artifacts.
&lt;br&gt;&lt;br&gt;For example, this doesn't cause any troubles:
&lt;br&gt;APACHE_DS = &amp;quot;org.apache.apacheds:noarch-installer:jar:1.5.1&amp;quot;
&lt;br&gt;But this does:
&lt;br&gt;AXIOM = group(&amp;quot;axiom-api&amp;quot;, &amp;quot;axiom-dom&amp;quot;, &amp;quot;axiom-impl&amp;quot;,
&lt;br&gt;:under=&amp;gt;&amp;quot;org.apache.ws.commons.axiom&amp;quot;, :version=&amp;gt;&amp;quot;1.2.7&amp;quot;)
&lt;br&gt;&lt;br&gt;Nicolas,
&lt;br&gt;&lt;br&gt;On Thu, Oct 9, 2008 at 11:25 AM, Assaf Arkin &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19891690&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;arkin@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Wed, Oct 8, 2008 at 6:45 PM, Nicolas Modrzyk &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19891690&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hellonico@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; Hi list,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I am using buildr 1.3.3 (snapshot) not standalone, but embedded into
&lt;br&gt;&amp;gt;&amp;gt; my own script.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I have a set of dependencies, and one of them would be:
&lt;br&gt;&amp;gt;&amp;gt; AXIOM = group(&amp;quot;axiom-api&amp;quot;, &amp;quot;axiom-dom&amp;quot;, &amp;quot;axiom-impl&amp;quot;,
&lt;br&gt;&amp;gt;&amp;gt; :under=&amp;gt;&amp;quot;org.apache.ws.commons.axiom&amp;quot;, :version=&amp;gt;&amp;quot;1.2.7&amp;quot;)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; That call fails with the following:
&lt;br&gt;&amp;gt;&amp;gt; Internal error: Called Buildr.settings before buildfile located (RuntimeError)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The full stack trace would be:
&lt;br&gt;&amp;gt;&amp;gt; /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/core/application.rb:144:in
&lt;br&gt;&amp;gt;&amp;gt; `settings': Internal error: Called Buildr.settings before buildfile
&lt;br&gt;&amp;gt;&amp;gt; located (RuntimeError)
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;from /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/core/application.rb:375:in
&lt;br&gt;&amp;gt;&amp;gt; `settings'
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;from /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/packaging/artifact.rb:431:in
&lt;br&gt;&amp;gt;&amp;gt; `local'
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;from /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/packaging/artifact.rb:458:in
&lt;br&gt;&amp;gt;&amp;gt; `locate'
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;from /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/packaging/artifact.rb:593:in
&lt;br&gt;&amp;gt;&amp;gt; `artifact'
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;from /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/packaging/artifact.rb:686:in
&lt;br&gt;&amp;gt;&amp;gt; `group'
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;from /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/packaging/artifact.rb:686:in
&lt;br&gt;&amp;gt;&amp;gt; `map'
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;from /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/packaging/artifact.rb:686:in
&lt;br&gt;&amp;gt;&amp;gt; `group'
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;from /Users/niko/projects/tempo.svn/rsc/scripts/../build/dependencies.rb:21
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I went and look at applications.rb, and there's obviously the line
&lt;br&gt;&amp;gt;&amp;gt; firing the RuntimeError:
&lt;br&gt;&amp;gt;&amp;gt; def settings
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;fail &amp;quot;Internal error: Called Buildr.settings before buildfile
&lt;br&gt;&amp;gt;&amp;gt; located&amp;quot; unless rakefile
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;@settings ||= Settings.new(self)
&lt;br&gt;&amp;gt;&amp;gt; end
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; If I comment it out, everything works fine, and it was also working
&lt;br&gt;&amp;gt;&amp;gt; fine with earlier versions of buildr.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Is there any reason why we're now forcing the check for a rakefile ?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Settings -- in this case path to local repository -- are loaded and
&lt;br&gt;&amp;gt; cached from optional YAML files, two of which, build.yml and
&lt;br&gt;&amp;gt; profile.yml are located in the same directory as the buildfile. &amp;nbsp;The
&lt;br&gt;&amp;gt; only way to access these files is to locate the buildfile first, which
&lt;br&gt;&amp;gt; happens during Buildr.application.run.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This sanity check is there to prevent Buildr (or 3rd party library)
&lt;br&gt;&amp;gt; from incorrectly loading settings too early, preventing issues like
&lt;br&gt;&amp;gt; this form cropping undetected:
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://issues.apache.org/jira/browse/BUILDR-115&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/browse/BUILDR-115&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Or anyway I can disable it (apart from touching buildr source code)?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; You can create your own Application object that has different behavior
&lt;br&gt;&amp;gt; and assign it to Buildr.application.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Assaf
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Nicolas,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---User-f28730.html&quot; embed=&quot;fixTarget[28730]&quot; target=&quot;_top&quot; &gt;Buildr - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Buildr.settings-before-buildfile-located-tp19890817p19891690.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19891170</id>
	<title>Re: Buildr.settings before buildfile located</title>
	<published>2008-10-08T19:25:50Z</published>
	<updated>2008-10-08T19:25:50Z</updated>
	<author>
		<name>Assaf Arkin</name>
	</author>
	<content type="html">On Wed, Oct 8, 2008 at 6:45 PM, Nicolas Modrzyk &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19891170&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hellonico@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi list,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I am using buildr 1.3.3 (snapshot) not standalone, but embedded into
&lt;br&gt;&amp;gt; my own script.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have a set of dependencies, and one of them would be:
&lt;br&gt;&amp;gt; AXIOM = group(&amp;quot;axiom-api&amp;quot;, &amp;quot;axiom-dom&amp;quot;, &amp;quot;axiom-impl&amp;quot;,
&lt;br&gt;&amp;gt; :under=&amp;gt;&amp;quot;org.apache.ws.commons.axiom&amp;quot;, :version=&amp;gt;&amp;quot;1.2.7&amp;quot;)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; That call fails with the following:
&lt;br&gt;&amp;gt; Internal error: Called Buildr.settings before buildfile located (RuntimeError)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The full stack trace would be:
&lt;br&gt;&amp;gt; /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/core/application.rb:144:in
&lt;br&gt;&amp;gt; `settings': Internal error: Called Buildr.settings before buildfile
&lt;br&gt;&amp;gt; located (RuntimeError)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;from /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/core/application.rb:375:in
&lt;br&gt;&amp;gt; `settings'
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;from /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/packaging/artifact.rb:431:in
&lt;br&gt;&amp;gt; `local'
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;from /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/packaging/artifact.rb:458:in
&lt;br&gt;&amp;gt; `locate'
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;from /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/packaging/artifact.rb:593:in
&lt;br&gt;&amp;gt; `artifact'
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;from /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/packaging/artifact.rb:686:in
&lt;br&gt;&amp;gt; `group'
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;from /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/packaging/artifact.rb:686:in
&lt;br&gt;&amp;gt; `map'
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;from /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/packaging/artifact.rb:686:in
&lt;br&gt;&amp;gt; `group'
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;from /Users/niko/projects/tempo.svn/rsc/scripts/../build/dependencies.rb:21
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I went and look at applications.rb, and there's obviously the line
&lt;br&gt;&amp;gt; firing the RuntimeError:
&lt;br&gt;&amp;gt; def settings
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;fail &amp;quot;Internal error: Called Buildr.settings before buildfile
&lt;br&gt;&amp;gt; located&amp;quot; unless rakefile
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;@settings ||= Settings.new(self)
&lt;br&gt;&amp;gt; end
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If I comment it out, everything works fine, and it was also working
&lt;br&gt;&amp;gt; fine with earlier versions of buildr.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Is there any reason why we're now forcing the check for a rakefile ?
&lt;/div&gt;&lt;br&gt;Settings -- in this case path to local repository -- are loaded and
&lt;br&gt;cached from optional YAML files, two of which, build.yml and
&lt;br&gt;profile.yml are located in the same directory as the buildfile. &amp;nbsp;The
&lt;br&gt;only way to access these files is to locate the buildfile first, which
&lt;br&gt;happens during Buildr.application.run.
&lt;br&gt;&lt;br&gt;This sanity check is there to prevent Buildr (or 3rd party library)
&lt;br&gt;from incorrectly loading settings too early, preventing issues like
&lt;br&gt;this form cropping undetected:
&lt;br&gt;&lt;a href=&quot;https://issues.apache.org/jira/browse/BUILDR-115&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/browse/BUILDR-115&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;gt; Or anyway I can disable it (apart from touching buildr source code)?
&lt;br&gt;&lt;br&gt;You can create your own Application object that has different behavior
&lt;br&gt;and assign it to Buildr.application.
&lt;br&gt;&lt;br&gt;Assaf
&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Nicolas,
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---User-f28730.html&quot; embed=&quot;fixTarget[28730]&quot; target=&quot;_top&quot; &gt;Buildr - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Buildr.settings-before-buildfile-located-tp19890817p19891170.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19890817</id>
	<title>Buildr.settings before buildfile located</title>
	<published>2008-10-08T18:45:45Z</published>
	<updated>2008-10-08T18:45:45Z</updated>
	<author>
		<name>Nicolas Modrzyk-4</name>
	</author>
	<content type="html">Hi list,
&lt;br&gt;&lt;br&gt;I am using buildr 1.3.3 (snapshot) not standalone, but embedded into
&lt;br&gt;my own script.
&lt;br&gt;&lt;br&gt;I have a set of dependencies, and one of them would be:
&lt;br&gt;AXIOM = group(&amp;quot;axiom-api&amp;quot;, &amp;quot;axiom-dom&amp;quot;, &amp;quot;axiom-impl&amp;quot;,
&lt;br&gt;:under=&amp;gt;&amp;quot;org.apache.ws.commons.axiom&amp;quot;, :version=&amp;gt;&amp;quot;1.2.7&amp;quot;)
&lt;br&gt;&lt;br&gt;That call fails with the following:
&lt;br&gt;Internal error: Called Buildr.settings before buildfile located (RuntimeError)
&lt;br&gt;&lt;br&gt;The full stack trace would be:
&lt;br&gt;/Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/core/application.rb:144:in
&lt;br&gt;`settings': Internal error: Called Buildr.settings before buildfile
&lt;br&gt;located (RuntimeError)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/core/application.rb:375:in
&lt;br&gt;`settings'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/packaging/artifact.rb:431:in
&lt;br&gt;`local'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/packaging/artifact.rb:458:in
&lt;br&gt;`locate'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/packaging/artifact.rb:593:in
&lt;br&gt;`artifact'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/packaging/artifact.rb:686:in
&lt;br&gt;`group'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/packaging/artifact.rb:686:in
&lt;br&gt;`map'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/packaging/artifact.rb:686:in
&lt;br&gt;`group'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from /Users/niko/projects/tempo.svn/rsc/scripts/../build/dependencies.rb:21
&lt;br&gt;&lt;br&gt;I went and look at applications.rb, and there's obviously the line
&lt;br&gt;firing the RuntimeError:
&lt;br&gt;def settings
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; fail &amp;quot;Internal error: Called Buildr.settings before buildfile
&lt;br&gt;located&amp;quot; unless rakefile
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; @settings ||= Settings.new(self)
&lt;br&gt;end
&lt;br&gt;&lt;br&gt;If I comment it out, everything works fine, and it was also working
&lt;br&gt;fine with earlier versions of buildr.
&lt;br&gt;&lt;br&gt;Is there any reason why we're now forcing the check for a rakefile ?
&lt;br&gt;Or anyway I can disable it (apart from touching buildr source code)?
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;&lt;br&gt;Nicolas,
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---User-f28730.html&quot; embed=&quot;fixTarget[28730]&quot; target=&quot;_top&quot; &gt;Buildr - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Buildr.settings-before-buildfile-located-tp19890817p19890817.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19890821</id>
	<title>Buildr.settings before buildfile located</title>
	<published>2008-10-08T18:45:10Z</published>
	<updated>2008-10-08T18:45:10Z</updated>
	<author>
		<name>Nicolas Modrzyk-4</name>
	</author>
	<content type="html">Hi list,
&lt;br&gt;&lt;br&gt;I am using buildr 1.3.3 (snapshot) not standalone, but embedded into
&lt;br&gt;my own script.
&lt;br&gt;&lt;br&gt;I have a set of dependencies, and one of them would be:
&lt;br&gt;AXIOM = group(&amp;quot;axiom-api&amp;quot;, &amp;quot;axiom-dom&amp;quot;, &amp;quot;axiom-impl&amp;quot;,
&lt;br&gt;:under=&amp;gt;&amp;quot;org.apache.ws.commons.axiom&amp;quot;, :version=&amp;gt;&amp;quot;1.2.7&amp;quot;)
&lt;br&gt;&lt;br&gt;That call fails with the following:
&lt;br&gt;Internal error: Called Buildr.settings before buildfile located (RuntimeError)
&lt;br&gt;&lt;br&gt;The full stack trace would be:
&lt;br&gt;/Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/core/application.rb:144:in
&lt;br&gt;`settings': Internal error: Called Buildr.settings before buildfile
&lt;br&gt;located (RuntimeError)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/core/application.rb:375:in
&lt;br&gt;`settings'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/packaging/artifact.rb:431:in
&lt;br&gt;`local'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/packaging/artifact.rb:458:in
&lt;br&gt;`locate'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/packaging/artifact.rb:593:in
&lt;br&gt;`artifact'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/packaging/artifact.rb:686:in
&lt;br&gt;`group'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/packaging/artifact.rb:686:in
&lt;br&gt;`map'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from /Users/niko/tools/gemrepository/gems/buildr-1.3.3/lib/buildr/packaging/artifact.rb:686:in
&lt;br&gt;`group'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; from /Users/niko/projects/tempo.svn/rsc/scripts/../build/dependencies.rb:21
&lt;br&gt;&lt;br&gt;I went and look at applications.rb, and there's obviously the line
&lt;br&gt;firing the RuntimeError:
&lt;br&gt;def settings
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; fail &amp;quot;Internal error: Called Buildr.settings before buildfile
&lt;br&gt;located&amp;quot; unless rakefile
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; @settings ||= Settings.new(self)
&lt;br&gt;end
&lt;br&gt;&lt;br&gt;If I comment it out, everything works fine, and it was also working
&lt;br&gt;fine with earlier versions of buildr.
&lt;br&gt;&lt;br&gt;Is there any reason why we're now forcing the check for a rakefile ?
&lt;br&gt;Or anyway I can disable it (apart from touching buildr source code)?
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;&lt;br&gt;Nicolas,
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---User-f28730.html&quot; embed=&quot;fixTarget[28730]&quot; target=&quot;_top&quot; &gt;Buildr - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Buildr.settings-before-buildfile-located-tp19890821p19890821.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19890440</id>
	<title>Re: [VOTE] Buildr 1.3.3 release</title>
	<published>2008-10-08T17:59:28Z</published>
	<updated>2008-10-08T17:59:28Z</updated>
	<author>
		<name>Tal Rotbart</name>
	</author>
	<content type="html">+1!
&lt;br&gt;&lt;br&gt;On Thu, Oct 9, 2008 at 8:32 AM, Assaf Arkin &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19890440&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;arkin@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; We're voting on the source distributions available here:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://people.apache.org/~assaf/buildr/1.3.3/distro/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/1.3.3/distro/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Specifically:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://people.apache.org/~assaf/buildr/1.3.3/distro/buildr-1.3.3-incubating.tgz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/1.3.3/distro/buildr-1.3.3-incubating.tgz&lt;/a&gt;&lt;br&gt;&amp;gt; &lt;a href=&quot;http://people.apache.org/~assaf/buildr/1.3.3/distro/buildr-1.3.3-incubating.zip&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/1.3.3/distro/buildr-1.3.3-incubating.zip&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The documentation generated for this release is available here:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://people.apache.org/~assaf/buildr/1.3.3/site/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/1.3.3/site/&lt;/a&gt;&lt;br&gt;&amp;gt; &lt;a href=&quot;http://people.apache.org/~assaf/buildr/1.3.3/site/buildr.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/1.3.3/site/buildr.pdf&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The official specification against which this release was tested:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://people.apache.org/~assaf/buildr/1.3.3/site/specs.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/1.3.3/site/specs.html&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Test coverage report:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://people.apache.org/~assaf/buildr/1.3.3/site/coverage/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/1.3.3/site/coverage/index.html&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The following changes were made since 1.3.2:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; * Added: &amp;nbsp;JtestR support. Implemented pending jtestr specs.
&lt;br&gt;&amp;gt; * Added: &amp;nbsp;Growl notifications (OS X only).
&lt;br&gt;&amp;gt; * Added: &amp;nbsp;error, info and trace methods.
&lt;br&gt;&amp;gt; * Added: &amp;nbsp;Release task support for alternative SVN repository layout
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(e.g., &lt;a href=&quot;http://my.repo.org/trunk/foo&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://my.repo.org/trunk/foo&lt;/a&gt;).
&lt;br&gt;&amp;gt; * Added: &amp;nbsp;BUILDR-128 Emma support
&lt;br&gt;&amp;gt; * Added: &amp;nbsp;BUILDR-135. Extracted reusable replacement logic into Filter::Mapper
&lt;br&gt;&amp;gt; * Added: &amp;nbsp;BUILDR-148 It is now possible to set the version of various 3rd
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;party libraries from the build.yml file. &amp;nbsp;Supported libraries
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;include Ant and the various test and BDD frameworks.
&lt;br&gt;&amp;gt; * Change: Error reporting now shows 'buildr aborted!' (used to say rake),
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;more of the stack trace without running --trace, and when running
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;with supported terminal, error message is red.
&lt;br&gt;&amp;gt; * Change: Eclipse task updated to documented Scala plugin requirements
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(&lt;a href=&quot;http://www.scala-lang.org/node/94&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.scala-lang.org/node/94&lt;/a&gt;)
&lt;br&gt;&amp;gt; * Change: Buildr.application.buildfile returns a task instead of a String.
&lt;br&gt;&amp;gt; * Change: BUILDR-104 Buildr::group has :under and :version, but not :type.
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Now it has :type too (Lacton).
&lt;br&gt;&amp;gt; * Change: BUILDR-139 Incremental test run.
&lt;br&gt;&amp;gt; * Change: BUILDR-141 Removed NEXT_VERSION from release task.
&lt;br&gt;&amp;gt; * Change: BUILDR-148 ant-junit no longer included in root classpath, but
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;specified during taskdef.
&lt;br&gt;&amp;gt; * Change: BUILDR-153 To customize the SVN tag used by the release task, set
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Release.tag_name to either the tag value or a proc that takes the
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;version number and return the desired tag.
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;Should not display &amp;quot;(in `pwd`, development)&amp;quot; when using --quiet.
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;Release task's regexp to find either THIS_VERSION and VERSION_NUMBER.
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-106 download(artifact(...)=&amp;gt;url) broken in certain cases
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(Lacton).
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-108 Trace to explain why a compile is done (Lacton).
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-109 Failure of &amp;quot;Buildr::Filter should respond to :include and
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;use these inclusion patterns&amp;quot; (Lacton).
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-110 Error creating buildfile from POM when missing plugin
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;configuration (Geoffrey Ruscoe).
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-112 Using a user gem repository with 'rake setup' (Lacton).
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-114 Hash.from_java_properties does not behave
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;like java.util.Properties (Lacton).
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-116: TestTask should include the main compile target in its
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;dependencies, even when using non standard directories (Lacton).
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-117 Shared directory for both code and resources produces
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;duplicate Eclipse classpath entries (Nathan Hamblen)
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-119 Eclipse task does not accept test resource folders
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(Lacton)
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-122: eclipse task should not check for directory existence
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-123: eclipse task should honor ResourceTask's target directory
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-124 unzip(...).from_path does not work correctly without
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;include (Rhett Sutphin).
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-126 &amp;nbsp;Tests options are shared between unrelated projects when
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;using #options instead of #using (Lacton).
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-129. Modifying a project manifest should not alter it's
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;parent project manifest.
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-137 JRuby 1.1.3 and Buildr 1.3.2 don't appear to work
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(on Windows).
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-138 ScalaTest premature use of Buildr::Repositories
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;inconsistent with customizing locations.
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-152 Project.task fails when task name starts with a colon.
&lt;br&gt;&amp;gt; * Fixed: &amp;nbsp;BUILDR-157 Tasks library not loaded from a submodule.
&lt;br&gt;&amp;gt; * Docs: &amp;nbsp; BUILDR-111 Troubleshoot tip when Buildr's bin directory shows up in
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;RUBYLIB (Geoffrey Ruscoe).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Assaf
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---Dev-f28731.html&quot; embed=&quot;fixTarget[28731]&quot; target=&quot;_top&quot; &gt;Buildr - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-VOTE--Buildr-1.3.3-release-tp19888028p19890440.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19888028</id>
	<title>[VOTE] Buildr 1.3.3 release</title>
	<published>2008-10-08T14:32:48Z</published>
	<updated>2008-10-08T14:32:48Z</updated>
	<author>
		<name>Assaf Arkin</name>
	</author>
	<content type="html">We're voting on the source distributions available here:
&lt;br&gt;&lt;a href=&quot;http://people.apache.org/~assaf/buildr/1.3.3/distro/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/1.3.3/distro/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Specifically:
&lt;br&gt;&lt;a href=&quot;http://people.apache.org/~assaf/buildr/1.3.3/distro/buildr-1.3.3-incubating.tgz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/1.3.3/distro/buildr-1.3.3-incubating.tgz&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://people.apache.org/~assaf/buildr/1.3.3/distro/buildr-1.3.3-incubating.zip&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/1.3.3/distro/buildr-1.3.3-incubating.zip&lt;/a&gt;&lt;br&gt;&lt;br&gt;The documentation generated for this release is available here:
&lt;br&gt;&lt;a href=&quot;http://people.apache.org/~assaf/buildr/1.3.3/site/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/1.3.3/site/&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://people.apache.org/~assaf/buildr/1.3.3/site/buildr.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/1.3.3/site/buildr.pdf&lt;/a&gt;&lt;br&gt;&lt;br&gt;The official specification against which this release was tested:
&lt;br&gt;&lt;a href=&quot;http://people.apache.org/~assaf/buildr/1.3.3/site/specs.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/1.3.3/site/specs.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;Test coverage report:
&lt;br&gt;&lt;a href=&quot;http://people.apache.org/~assaf/buildr/1.3.3/site/coverage/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/1.3.3/site/coverage/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following changes were made since 1.3.2:
&lt;br&gt;&lt;br&gt;* Added: &amp;nbsp;JtestR support. Implemented pending jtestr specs.
&lt;br&gt;* Added: &amp;nbsp;Growl notifications (OS X only).
&lt;br&gt;* Added: &amp;nbsp;error, info and trace methods.
&lt;br&gt;* Added: &amp;nbsp;Release task support for alternative SVN repository layout
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (e.g., &lt;a href=&quot;http://my.repo.org/trunk/foo&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://my.repo.org/trunk/foo&lt;/a&gt;).
&lt;br&gt;* Added: &amp;nbsp;BUILDR-128 Emma support
&lt;br&gt;* Added: &amp;nbsp;BUILDR-135. Extracted reusable replacement logic into Filter::Mapper
&lt;br&gt;* Added: &amp;nbsp;BUILDR-148 It is now possible to set the version of various 3rd
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; party libraries from the build.yml file. &amp;nbsp;Supported libraries
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; include Ant and the various test and BDD frameworks.
&lt;br&gt;* Change: Error reporting now shows 'buildr aborted!' (used to say rake),
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; more of the stack trace without running --trace, and when running
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; with supported terminal, error message is red.
&lt;br&gt;* Change: Eclipse task updated to documented Scala plugin requirements
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (&lt;a href=&quot;http://www.scala-lang.org/node/94&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.scala-lang.org/node/94&lt;/a&gt;)
&lt;br&gt;* Change: Buildr.application.buildfile returns a task instead of a String.
&lt;br&gt;* Change: BUILDR-104 Buildr::group has :under and :version, but not :type.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Now it has :type too (Lacton).
&lt;br&gt;* Change: BUILDR-139 Incremental test run.
&lt;br&gt;* Change: BUILDR-141 Removed NEXT_VERSION from release task.
&lt;br&gt;* Change: BUILDR-148 ant-junit no longer included in root classpath, but
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; specified during taskdef.
&lt;br&gt;* Change: BUILDR-153 To customize the SVN tag used by the release task, set
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Release.tag_name to either the tag value or a proc that takes the
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; version number and return the desired tag.
&lt;br&gt;* Fixed: &amp;nbsp;Should not display &amp;quot;(in `pwd`, development)&amp;quot; when using --quiet.
&lt;br&gt;* Fixed: &amp;nbsp;Release task's regexp to find either THIS_VERSION and VERSION_NUMBER.
&lt;br&gt;* Fixed: &amp;nbsp;BUILDR-106 download(artifact(...)=&amp;gt;url) broken in certain cases
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (Lacton).
&lt;br&gt;* Fixed: &amp;nbsp;BUILDR-108 Trace to explain why a compile is done (Lacton).
&lt;br&gt;* Fixed: &amp;nbsp;BUILDR-109 Failure of &amp;quot;Buildr::Filter should respond to :include and
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; use these inclusion patterns&amp;quot; (Lacton).
&lt;br&gt;* Fixed: &amp;nbsp;BUILDR-110 Error creating buildfile from POM when missing plugin
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; configuration (Geoffrey Ruscoe).
&lt;br&gt;* Fixed: &amp;nbsp;BUILDR-112 Using a user gem repository with 'rake setup' (Lacton).
&lt;br&gt;* Fixed: &amp;nbsp;BUILDR-114 Hash.from_java_properties does not behave
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; like java.util.Properties (Lacton).
&lt;br&gt;* Fixed: &amp;nbsp;BUILDR-116: TestTask should include the main compile target in its
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dependencies, even when using non standard directories (Lacton).
&lt;br&gt;* Fixed: &amp;nbsp;BUILDR-117 Shared directory for both code and resources produces
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; duplicate Eclipse classpath entries (Nathan Hamblen)
&lt;br&gt;* Fixed: &amp;nbsp;BUILDR-119 Eclipse task does not accept test resource folders
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (Lacton)
&lt;br&gt;* Fixed: &amp;nbsp;BUILDR-122: eclipse task should not check for directory existence
&lt;br&gt;* Fixed: &amp;nbsp;BUILDR-123: eclipse task should honor ResourceTask's target directory
&lt;br&gt;* Fixed: &amp;nbsp;BUILDR-124 unzip(...).from_path does not work correctly without
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; include (Rhett Sutphin).
&lt;br&gt;* Fixed: &amp;nbsp;BUILDR-126 &amp;nbsp;Tests options are shared between unrelated projects when
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; using #options instead of #using (Lacton).
&lt;br&gt;* Fixed: &amp;nbsp;BUILDR-129. Modifying a project manifest should not alter it's
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; parent project manifest.
&lt;br&gt;* Fixed: &amp;nbsp;BUILDR-137 JRuby 1.1.3 and Buildr 1.3.2 don't appear to work
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (on Windows).
&lt;br&gt;* Fixed: &amp;nbsp;BUILDR-138 ScalaTest premature use of Buildr::Repositories
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; inconsistent with customizing locations.
&lt;br&gt;* Fixed: &amp;nbsp;BUILDR-152 Project.task fails when task name starts with a colon.
&lt;br&gt;* Fixed: &amp;nbsp;BUILDR-157 Tasks library not loaded from a submodule.
&lt;br&gt;* Docs: &amp;nbsp; BUILDR-111 Troubleshoot tip when Buildr's bin directory shows up in
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; RUBYLIB (Geoffrey Ruscoe).
&lt;br&gt;&lt;br&gt;&lt;br&gt;Assaf
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---Dev-f28731.html&quot; embed=&quot;fixTarget[28731]&quot; target=&quot;_top&quot; &gt;Buildr - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-VOTE--Buildr-1.3.3-release-tp19888028p19888028.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19884486</id>
	<title>Re: [POLL] Buildr 1.3.3 release</title>
	<published>2008-10-08T11:20:34Z</published>
	<updated>2008-10-08T11:20:34Z</updated>
	<author>
		<name>lacton</name>
	</author>
	<content type="html">+1
&lt;br&gt;&lt;br&gt;On Tue, Oct 7, 2008 at 10:28 PM, Assaf Arkin &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19884486&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;arkin@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; We went on code freeze six days ago, few minor issues discovered and fixed,
&lt;br&gt;&amp;gt; tests all green now. I think that by tomorrow, we can declare trunk stable
&lt;br&gt;&amp;gt; enough and start a formal vote on the release. &amp;nbsp;It's going to take a couple
&lt;br&gt;&amp;gt; of hours to stage the packagers, prepare a vote email etc, so I'd like to
&lt;br&gt;&amp;gt; know if it's worth pursuing first.
&lt;br&gt;&amp;gt; Assaf
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---Dev-f28731.html&quot; embed=&quot;fixTarget[28731]&quot; target=&quot;_top&quot; &gt;Buildr - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-POLL--Buildr-1.3.3-release-tp19866551p19884486.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19884454</id>
	<title>Re: Problem compiling with buildr</title>
	<published>2008-10-08T11:07:17Z</published>
	<updated>2008-10-08T11:07:17Z</updated>
	<author>
		<name>Assaf Arkin</name>
	</author>
	<content type="html">In the Buildr source directory there's a file called _buildr, running:
&lt;br&gt;&lt;br&gt;jruby -e &amp;quot;load '_buildr' ; puts Java.tools_jar&amp;quot;
&lt;br&gt;&lt;br&gt;loads that file, initializing Buildr and then checks if Buildr can guess
&lt;br&gt;where tools.jar is.
&lt;br&gt;&lt;br&gt;Assaf
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Wed, Oct 8, 2008 at 1:07 AM, chihiro &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19884454&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gavin.emploi@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; $ jruby -e &amp;quot;load '_buildr'&amp;quot;
&lt;br&gt;&amp;gt; -e:1:in `load': No such file to load -- _buildr (LoadError)
&lt;br&gt;&amp;gt; from -e:1
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; $ jruby -e &amp;quot;puts Java.tools_jar&amp;quot;
&lt;br&gt;&amp;gt; Java::Tools_jar
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I created a simple maven2 project and &amp;quot;mvn install&amp;quot; compiles fine in the
&lt;br&gt;&amp;gt; same cygwin shell.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Regards,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Gavin
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/Problem-compiling-with-buildr-tp19858629p19874242.html&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Problem-compiling-with-buildr-tp19858629p19874242.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the Buildr - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---User-f28730.html&quot; embed=&quot;fixTarget[28730]&quot; target=&quot;_top&quot; &gt;Buildr - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-compiling-with-buildr-tp19858629p19884454.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19877966</id>
	<title>Re: [POLL] Buildr 1.3.3 release</title>
	<published>2008-10-08T05:47:41Z</published>
	<updated>2008-10-08T05:47:41Z</updated>
	<author>
		<name>Jim Jagielski</name>
	</author>
	<content type="html">+1
&lt;br&gt;&lt;br&gt;On Oct 7, 2008, at 4:28 PM, Assaf Arkin wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; We went on code freeze six days ago, few minor issues discovered and &amp;nbsp;
&lt;br&gt;&amp;gt; fixed,
&lt;br&gt;&amp;gt; tests all green now. I think that by tomorrow, we can declare trunk &amp;nbsp;
&lt;br&gt;&amp;gt; stable
&lt;br&gt;&amp;gt; enough and start a formal vote on the release. &amp;nbsp;It's going to take a &amp;nbsp;
&lt;br&gt;&amp;gt; couple
&lt;br&gt;&amp;gt; of hours to stage the packagers, prepare a vote email etc, so I'd &amp;nbsp;
&lt;br&gt;&amp;gt; like to
&lt;br&gt;&amp;gt; know if it's worth pursuing first.
&lt;br&gt;&amp;gt; Assaf
&lt;/div&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---Dev-f28731.html&quot; embed=&quot;fixTarget[28731]&quot; target=&quot;_top&quot; &gt;Buildr - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-POLL--Buildr-1.3.3-release-tp19866551p19877966.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19874242</id>
	<title>Re: Problem compiling with buildr</title>
	<published>2008-10-08T01:07:09Z</published>
	<updated>2008-10-08T01:07:09Z</updated>
	<author>
		<name>chihiro</name>
	</author>
	<content type="html">$ jruby -e &amp;quot;load '_buildr'&amp;quot;
&lt;br&gt;-e:1:in `load': No such file to load -- _buildr (LoadError)
&lt;br&gt;from -e:1
&lt;br&gt;&lt;br&gt;$ jruby -e &amp;quot;puts Java.tools_jar&amp;quot;
&lt;br&gt;Java::Tools_jar
&lt;br&gt;&lt;br&gt;I created a simple maven2 project and &amp;quot;mvn install&amp;quot; compiles fine in the same cygwin shell.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&lt;br&gt;Gavin&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---User-f28730.html&quot; embed=&quot;fixTarget[28730]&quot; target=&quot;_top&quot; &gt;Buildr - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-compiling-with-buildr-tp19858629p19874242.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19868868</id>
	<title>Re: [POLL] Buildr 1.3.3 release</title>
	<published>2008-10-07T15:38:40Z</published>
	<updated>2008-10-07T15:38:40Z</updated>
	<author>
		<name>Tal Rotbart</name>
	</author>
	<content type="html">+1
&lt;br&gt;&lt;br&gt;On Wed, Oct 8, 2008 at 7:28 AM, Assaf Arkin &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19868868&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;arkin@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; We went on code freeze six days ago, few minor issues discovered and fixed,
&lt;br&gt;&amp;gt; tests all green now. I think that by tomorrow, we can declare trunk stable
&lt;br&gt;&amp;gt; enough and start a formal vote on the release. &amp;nbsp;It's going to take a couple
&lt;br&gt;&amp;gt; of hours to stage the packagers, prepare a vote email etc, so I'd like to
&lt;br&gt;&amp;gt; know if it's worth pursuing first.
&lt;br&gt;&amp;gt; Assaf
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---Dev-f28731.html&quot; embed=&quot;fixTarget[28731]&quot; target=&quot;_top&quot; &gt;Buildr - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-POLL--Buildr-1.3.3-release-tp19866551p19868868.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19868103</id>
	<title>Re: Problem compiling with buildr</title>
	<published>2008-10-07T14:49:59Z</published>
	<updated>2008-10-07T14:49:59Z</updated>
	<author>
		<name>Alex Boisvert-3</name>
	</author>
	<content type="html">You might want to check that JAVA_HOME points to a JDK and not a JRE. &amp;nbsp;One
&lt;br&gt;difference with the JDK is that it includes tools.jar (and thus, javac).
&lt;br&gt;&lt;br&gt;Typically $JAVA_HOME/lib/tools.jar
&lt;br&gt;&lt;br&gt;alex
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Tue, Oct 7, 2008 at 10:50 PM, chihiro &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19868103&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gavin.emploi@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm not sure if this is due to buildr/JRuby but if you can eliminate it
&lt;br&gt;&amp;gt; from
&lt;br&gt;&amp;gt; the list of possible causes, that'll be great.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Firstly, I can compile code by hand using javac in a cygwin bash shell. So
&lt;br&gt;&amp;gt; $JAVA_HOME / $PATH are correctly defined.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; But when I do a &amp;quot;buildr install&amp;quot;, I get the following in
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://pastebin.com/f1c3f663e&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pastebin.com/f1c3f663e&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Regards,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Gavin
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/Problem-compiling-with-buildr-tp19858629p19858629.html&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Problem-compiling-with-buildr-tp19858629p19858629.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the Buildr - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---User-f28730.html&quot; embed=&quot;fixTarget[28730]&quot; target=&quot;_top&quot; &gt;Buildr - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-compiling-with-buildr-tp19858629p19868103.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19866551</id>
	<title>[POLL] Buildr 1.3.3 release</title>
	<published>2008-10-07T13:28:26Z</published>
	<updated>2008-10-07T13:28:26Z</updated>
	<author>
		<name>Assaf Arkin</name>
	</author>
	<content type="html">We went on code freeze six days ago, few minor issues discovered and fixed,
&lt;br&gt;tests all green now. I think that by tomorrow, we can declare trunk stable
&lt;br&gt;enough and start a formal vote on the release. &amp;nbsp;It's going to take a couple
&lt;br&gt;of hours to stage the packagers, prepare a vote email etc, so I'd like to
&lt;br&gt;know if it's worth pursuing first.
&lt;br&gt;Assaf
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---Dev-f28731.html&quot; embed=&quot;fixTarget[28731]&quot; target=&quot;_top&quot; &gt;Buildr - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/-POLL--Buildr-1.3.3-release-tp19866551p19866551.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19860484</id>
	<title>Re: Problem compiling with buildr</title>
	<published>2008-10-07T08:15:50Z</published>
	<updated>2008-10-07T08:15:50Z</updated>
	<author>
		<name>lacton</name>
	</author>
	<content type="html">What do you get if you run the following command from your buildr directory
&lt;br&gt;&lt;br&gt;jruby -e &amp;quot;load '_buildr' ; puts Java.tools_jar&amp;quot;
&lt;br&gt;&lt;br&gt;?
&lt;br&gt;&lt;br&gt;Lacton
&lt;br&gt;&lt;br&gt;On Tue, Oct 7, 2008 at 3:50 PM, chihiro &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19860484&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gavin.emploi@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm not sure if this is due to buildr/JRuby but if you can eliminate it from
&lt;br&gt;&amp;gt; the list of possible causes, that'll be great.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Firstly, I can compile code by hand using javac in a cygwin bash shell. So
&lt;br&gt;&amp;gt; $JAVA_HOME / $PATH are correctly defined.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; But when I do a &amp;quot;buildr install&amp;quot;, I get the following in
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://pastebin.com/f1c3f663e&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pastebin.com/f1c3f663e&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Regards,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Gavin
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://www.nabble.com/Problem-compiling-with-buildr-tp19858629p19858629.html&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Problem-compiling-with-buildr-tp19858629p19858629.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the Buildr - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---User-f28730.html&quot; embed=&quot;fixTarget[28730]&quot; target=&quot;_top&quot; &gt;Buildr - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-compiling-with-buildr-tp19858629p19860484.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19858629</id>
	<title>Problem compiling with buildr</title>
	<published>2008-10-07T06:50:35Z</published>
	<updated>2008-10-07T06:50:35Z</updated>
	<author>
		<name>chihiro</name>
	</author>
	<content type="html">I'm not sure if this is due to buildr/JRuby but if you can eliminate it from the list of possible causes, that'll be great.
&lt;br&gt;&lt;br&gt;Firstly, I can compile code by hand using javac in a cygwin bash shell. So $JAVA_HOME / $PATH are correctly defined.
&lt;br&gt;&lt;br&gt;But when I do a &amp;quot;buildr install&amp;quot;, I get the following in &lt;a href=&quot;http://pastebin.com/f1c3f663e&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pastebin.com/f1c3f663e&lt;/a&gt;&lt;br&gt;&lt;br&gt;Thanks.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&lt;br&gt;Gavin&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---User-f28730.html&quot; embed=&quot;fixTarget[28730]&quot; target=&quot;_top&quot; &gt;Buildr - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-compiling-with-buildr-tp19858629p19858629.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19854178</id>
	<title>Re: Problem installing buildr 1.3.2 via JRuby</title>
	<published>2008-10-07T02:06:34Z</published>
	<updated>2008-10-07T02:06:34Z</updated>
	<author>
		<name>chihiro</name>
	</author>
	<content type="html">Assaf,
&lt;br&gt;&lt;br&gt;ok. I have the development buildr installed. Thanks.
&lt;br&gt;&lt;br&gt;$ buildr --version
&lt;br&gt;Buildr 1.3.3 (JRuby 1.1.4)
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&lt;br&gt;Gavin&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---User-f28730.html&quot; embed=&quot;fixTarget[28730]&quot; target=&quot;_top&quot; &gt;Buildr - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-installing-buildr-1.3.2-via-JRuby-tp19809440p19854178.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19847935</id>
	<title>Re: Problem installing buildr 1.3.2 via JRuby</title>
	<published>2008-10-06T15:59:54Z</published>
	<updated>2008-10-06T15:59:54Z</updated>
	<author>
		<name>Assaf Arkin</name>
	</author>
	<content type="html">On Mon, Oct 6, 2008 at 3:27 PM, Nicolas Modrzyk &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19847935&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hellonico@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; Assaf,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The developer documentation is missing the / as well at:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://incubator.apache.org/buildr/contributing.html#using_development_build&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://incubator.apache.org/buildr/contributing.html#using_development_build&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;Fixed in head/trunk, we'll update the site when we push the release.
&lt;br&gt;&lt;br&gt;Assaf
&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://incubator.apache.org/buildr/contributing.html#using_development_build&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://incubator.apache.org/buildr/contributing.html#using_development_build&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Nicolas,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On 10/7/08, Assaf Arkin &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19847935&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;arkin@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt; On Mon, Oct 6, 2008 at 6:59 AM, chihiro &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19847935&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gavin.emploi@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;gt; Assaf,
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;gt; Assaf Arkin wrote:
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;gt;&amp;gt; Yes, that's a known issue:
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;gt;&amp;gt; &lt;a href=&quot;https://issues.apache.org/jira/browse/BUILDR-137&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/browse/BUILDR-137&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;gt; Thanks for the reply. I tried to get a dev snapshot but there seems to
&lt;br&gt;&amp;gt; be a
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;gt; problem.
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;gt; $ jruby -S gem source --add
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://people.apache.org/~assaf/buildr/snapshot&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/snapshot&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;gt; Error fetching &lt;a href=&quot;http://people.apache.org/~assaf/buildr/snapshot:&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/snapshot:&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;gt; bad response Not Found 404
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;gt; (&lt;a href=&quot;http://people.apache.org/~assaf/buildr/specs.4.8.gz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/specs.4.8.gz&lt;/a&gt;)
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Sorry, this should be:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; gem source --add &lt;a href=&quot;http://people.apache.org/~assaf/buildr/snapshot/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/snapshot/&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;The slash at the end makes all the difference.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;Assaf
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;gt; Gavin
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/Problem-installing-buildr-1.3.2-via-JRuby-tp19809440p19838490.html&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Problem-installing-buildr-1.3.2-via-JRuby-tp19809440p19838490.html&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;gt; Sent from the Buildr - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---User-f28730.html&quot; embed=&quot;fixTarget[28730]&quot; target=&quot;_top&quot; &gt;Buildr - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-installing-buildr-1.3.2-via-JRuby-tp19809440p19847935.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19847585</id>
	<title>Re: Problem installing buildr 1.3.2 via JRuby</title>
	<published>2008-10-06T15:27:10Z</published>
	<updated>2008-10-06T15:27:10Z</updated>
	<author>
		<name>Nicolas Modrzyk-4</name>
	</author>
	<content type="html">Assaf,
&lt;br&gt;&lt;br&gt;The developer documentation is missing the / as well at:
&lt;br&gt;&lt;a href=&quot;http://incubator.apache.org/buildr/contributing.html#using_development_build&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://incubator.apache.org/buildr/contributing.html#using_development_build&lt;/a&gt;&lt;br&gt;&lt;br&gt;Nicolas,
&lt;br&gt;&lt;br&gt;On 10/7/08, Assaf Arkin &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19847585&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;arkin@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Mon, Oct 6, 2008 at 6:59 AM, chihiro &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19847585&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gavin.emploi@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt; Assaf,
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt; Assaf Arkin wrote:
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt;&amp;gt; Yes, that's a known issue:
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt;&amp;gt; &lt;a href=&quot;https://issues.apache.org/jira/browse/BUILDR-137&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/browse/BUILDR-137&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt; Thanks for the reply. I tried to get a dev snapshot but there seems to be a
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt; problem.
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt; $ jruby -S gem source --add &lt;a href=&quot;http://people.apache.org/~assaf/buildr/snapshot&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/snapshot&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt; Error fetching &lt;a href=&quot;http://people.apache.org/~assaf/buildr/snapshot:&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/snapshot:&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt; bad response Not Found 404
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt; (&lt;a href=&quot;http://people.apache.org/~assaf/buildr/specs.4.8.gz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/specs.4.8.gz&lt;/a&gt;)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Sorry, this should be:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; gem source --add &lt;a href=&quot;http://people.apache.org/~assaf/buildr/snapshot/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://people.apache.org/~assaf/buildr/snapshot/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;The slash at the end makes all the difference.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;Assaf
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt; Gavin
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt; --
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt; View this message in context: &lt;a href=&quot;http://www.nabble.com/Problem-installing-buildr-1.3.2-via-JRuby-tp19809440p19838490.html&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Problem-installing-buildr-1.3.2-via-JRuby-tp19809440p19838490.html&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt; Sent from the Buildr - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---User-f28730.html&quot; embed=&quot;fixTarget[28730]&quot; target=&quot;_top&quot; &gt;Buildr - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-installing-buildr-1.3.2-via-JRuby-tp19809440p19847585.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-19845212</id>
	<title>Re: svn commit: r702225 - in /incubator/buildr/trunk: lib/buildr/java/bdd.rb lib/buildr/java/jtestr_runner.rb.erb lib/buildr/java/test_result.rb spec/java/bdd_spec.rb</title>
	<published>2008-10-06T12:56:30Z</published>
	<updated>2008-10-06T12:56:30Z</updated>
	<author>
		<name>Assaf Arkin</name>
	</author>
	<content type="html">BTW thanks for the quick fix!
&lt;br&gt;&lt;br&gt;I just uploaded a new snapshot with the very latest.
&lt;br&gt;&lt;br&gt;Assaf
&lt;br&gt;&lt;br&gt;On Mon, Oct 6, 2008 at 12:42 PM, Victor Hugo Borja &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19845212&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vic.borja@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Mon, Oct 6, 2008 at 2:38 PM, Assaf Arkin &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=19845212&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;arkin@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I figured as much. &amp;nbsp;gem 'buildr' brings you all the right
&lt;br&gt;&amp;gt;&amp;gt; requirements, including the very same RSpec you ran Buildr with; it
&lt;br&gt;&amp;gt;&amp;gt; doesn't load Buildr or any of the dependencies.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; $ ruby -rubygems -e &amp;quot;gem 'buildr' ; Buildr&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt; -e:1: uninitialized constant Buildr (NameError)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; $ ruby -rubygems -e &amp;quot;require 'spec' ; p Spec::VERSION::STRING&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt; &amp;quot;1.1.8&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; $ ruby -rubygems -e &amp;quot;gem 'buildr' ; require 'spec' ; p
&lt;br&gt;&amp;gt;&amp;gt; Spec::VERSION::STRING&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt; &amp;quot;1.1.5&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I know, any way I've removed that rspec requirement, because JtestR bundles
&lt;br&gt;&amp;gt; all its dependencies on the jtestr jar, the current JtestR 0.3.1 version
&lt;br&gt;&amp;gt; includes rspec 1.1.4, so I think it's better to let jtestr select the
&lt;br&gt;&amp;gt; version to work with.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; vic
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Quaerendo invenietis.
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Buildr---Dev-f28731.html&quot; embed=&quot;fixTarget[28731]&quot; target=&quot;_top&quot; &gt;Buildr - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Re%3A-svn-commit%3A-r702225---in--incubator-buildr-trunk%3A-lib-buildr-java-bdd.rb-lib-buildr-java-jtestr_runner.rb.erb-lib-buildr-java-test_result.rb-spec-java-bdd_spec.rb-tp19844144p19845212.html" />
</entry>

</feed>
