Re: A little too terse...

2009-02-27 Thread Alex Boisvert
Nice... thanks! On Fri, Feb 27, 2009 at 12:32 PM, Assaf Arkin ar...@intalio.com wrote: Should be fixed now. Assaf On Thu, Feb 26, 2009 at 10:29 PM, Alex Boisvert boisv...@intalio.com wrote: This recent change, Running svn diff -r735809:744045 lib/buildr/core/application.rb r744045

Packaging [...] messages

2009-02-27 Thread Alex Boisvert
I'm contemplating adding an info-level message for packaging tasks such as the following: (Packaging [...] messages highlighted in red below; require HTML email client), boisv...@sixtine:~/svn/n3/console/trunk$ b13 package (in /home/boisvert/svn/n3/console/trunk, development) Building console

Re: Packaging [...] messages

2009-02-27 Thread Alex Boisvert
Ok, done. On Fri, Feb 27, 2009 at 3:45 PM, Assaf Arkin ar...@intalio.com wrote: +1 How about file name (not full path) to replace packaging project? Assaf On Fri, Feb 27, 2009 at 3:38 PM, Alex Boisvert boisv...@intalio.com wrote: I'm contemplating adding an info-level message

1.3.4 release

2009-04-20 Thread Alex Boisvert
Guys, The 1.3.4 release is now long overdue... Victor are you still volunteering to do it? If not, I can get started tomorrow. alex

[VOTE] Buildr 1.3.4 release

2009-04-21 Thread Alex Boisvert
We're voting on the source distributions available here: http://people.apache.org/~boisvert/buildr/1.3.4/dist/ Specifically: http://people.apache.org/~boisvert/buildr/1.3.4/dist/buildr-1.3.4.tgz http://people.apache.org/~boisvert/buildr/1.3.4/dist/buildr-1.3.4.zip The documentation generated for

Re: 12 Things to Know about Buildr

2009-07-19 Thread Alex Boisvert
On Sun, Jul 19, 2009 at 7:17 PM, Daniel Spiewak djspie...@gmail.com wrote: I know this is probably overly pedantic, but neither Buildr nor Rake perform a topological sort. As mentioned, Rake resolves dependencies at runtime. All it has to do is mark tasks as 'in progress' or 'done' as

Re: Quick Start Documentation

2009-07-29 Thread Alex Boisvert
For what it's worth, I've done a similar download, unzip, find the jars, compile with the jars job in a project last year... I didn't feel like creating artifacts for all the jars included in Eclipse BIRT... and it looked like: BIRT_WAR = artifact(org.eclipse.birt:birt-webapp:war:2.3.0) def

Re: Changes to loc example

2009-08-03 Thread Alex Boisvert
Oh and I was perusing the repo and saw your sloccount.rb extension... I'm guessing it's still a work-in-progress and wanted to point out that it would be better to allocate a new SloccountConfig in before_define instead of having a single configuration instance across all projects. My

Re: Changes to loc example

2009-08-04 Thread Alex Boisvert
I've managed to narrow down the issue to the Buildr::Extension::ClassMethods.callbacks method which returns an invalid Callback instance. I came up with a quick fix but I'm not sure why this is happening or if it's the right solution. boisv...@sixtine:~/svn/buildr-ext$ svn-diff Index:

Re: Changes to loc example

2009-08-04 Thread Alex Boisvert
On Tue, Aug 4, 2009 at 8:20 PM, Assaf Arkin as...@labnotes.org wrote: On Tue, Aug 4, 2009 at 7:31 PM, Alex Boisvert boisv...@intalio.com wrote: I've managed to narrow down the issue to the Buildr::Extension::ClassMethods.callbacks method which returns an invalid Callback instance. I

Re: Changes to loc example

2009-08-04 Thread Alex Boisvert
On Tue, Aug 4, 2009 at 8:29 PM, Daniel Spiewak djspie...@gmail.com wrote: Everything in Buildr is an extension added on to project, if first_time decided to stop working, so would compiling, testing, packaging, etc. That's part of why I don't understand Martin's bug. We *know* that

Re: Changes to loc example

2009-08-04 Thread Alex Boisvert
Oh, I see. I checked earlier but I missed that. That's the issue then. Thanks! alex On Tue, Aug 4, 2009 at 8:50 PM, Assaf Arkin as...@labnotes.org wrote: On Tue, Aug 4, 2009 at 8:45 PM, Alex Boisvert boisv...@intalio.com wrote: On Tue, Aug 4, 2009 at 8:20 PM, Assaf Arkin

August Board Report

2009-08-16 Thread Alex Boisvert
Our board report is due this week and I've jotted down what I had in mind here: http://cwiki.apache.org/confluence/display/BUILDR/August+2009+Board+Report Please add or comment on anything else you think is relevant, via email or directly on the wiki. I will be submitting the board report

Re: [jira] Commented: (BUILDR-278) tasks/*.rake files are loaded after the buildfile

2009-08-17 Thread Alex Boisvert
Same here; I'm not intimately familiar with the bootstrap process and Rake's import so I would feel better if Assaf voiced in on it. alex On Mon, Aug 17, 2009 at 6:54 AM, Daniel Spiewak djspie...@gmail.com wrote: Could we take a look at this? He *did* supply a patch with specs back in May.

Re: Discuss: Buildr 1.3.5

2009-09-16 Thread Alex Boisvert
On Wed, Sep 16, 2009 at 9:10 AM, Rhett Sutphin rh...@detailedbalance.netwrote: Perhaps it would be possible to do a 1.3.5 release with various bugfixes which have already been committed (including OS X 10.6 support), then consider which new features should be merged in for 1.4.0? This would

Re: Discuss: Buildr 1.3.5

2009-09-16 Thread Alex Boisvert
I'll put it on top of my list. alex On Wed, Sep 16, 2009 at 9:30 AM, Martin Grotzke martin.grot...@javakaffee.de wrote: What about https://issues.apache.org/jira/browse/BUILDR-301 (Build completes successfully on configuration failures) ? Is it possible that this will be fixed in the next

Re: Java.load called in sandbox

2009-09-16 Thread Alex Boisvert
I applied the patch. The change is safe and we know it fulfils Antoine's need for plugin testing. (Assaf, feel free to jump in here if you see a better solution -- I didn't) alex On Wed, Sep 16, 2009 at 7:14 AM, Daniel Spiewak djspie...@gmail.com wrote: Assaf? I don't have the expertise

Re: svn commit: r819603 - /buildr/trunk/lib/buildr/scala/org/apache/buildr/SpecsSingletonRunner.scala

2009-09-28 Thread Alex Boisvert
Yes. Without -target:jvm.1.4 option it works, boisv...@sixtine:~/svn/buildr-java$ /opt/boisvert/scala-2.7.5/bin/scalac /home/boisvert/svn/buildr-java/lib/buildr/scala/org/apache/buildr/SpecsSingletonRunner.scala but with -target:jvm-1.4 option it fails: boisv...@sixtine:~/svn/buildr-java$

Re: svn commit: r819603 - /buildr/trunk/lib/buildr/scala/org/apache/buildr/SpecsSingletonRunner.scala

2009-09-28 Thread Alex Boisvert
For the release builds, we've been creating .class files with JVM 1.4 compatibility target so far... except for the SpecsSingleRunner I guess since it was checked-in already (and the other bug I'll mention in the next email). alex On Mon, Sep 28, 2009 at 9:07 AM, Alex Boisvert alex.boisv

Re: rake compile not building java code in current trunk

2009-09-28 Thread Alex Boisvert
Looks like it was a bug introduced in http://github.com/apache/buildr/commit/88ff51503689480aa38b5ad666e6d6d02ab05cf4 Working on it... the fix seems to cause spec failures. alex On Sun, Sep 27, 2009 at 2:46 PM, Rhett Sutphin rh...@detailedbalance.netwrote: Hi all, I'm trying to test out a

Re: svn commit: r819606 - in /buildr/trunk/lib/buildr: java/org/apache/buildr/JavaTestFilter.class scala/org/apache/buildr/SpecsSingletonRunner$.class scala/org/apache/buildr/SpecsSingletonRunner.cl

2009-09-28 Thread Alex Boisvert
H. From a practical standpoint, I think it already does depend on it. Even if the .class files are there, we would rely on timestamps being intact to avoid the dependency (since we have tasks to recompile .scala files) and based on recent experience, I don't think we can rely on timestamps

Re: Buildr's example build scripts

2009-10-01 Thread Alex Boisvert
I'm all for it. Anyone wants to volunteer a good-looking, newbie-friendly, illustrative buildfile to put on the front page? Or suggestions for specific snippets to showcase? alex On Thu, Oct 1, 2009 at 9:19 AM, Paul Hammant p...@hammant.org wrote: I think its especially important to a

Excluding groovy specs on jruby?

2009-10-03 Thread Alex Boisvert
Any particular reason for excluding groovy specs for jruby? desc Run all specs Spec::Rake::SpecTask.new :spec='_reports' do |task| task.spec_files = FileList['spec/**/*_spec.rb'] task.spec_files.exclude('spec/groovy/*') if RUBY_PLATFORM[/java/] # Alex: WHY? task.spec_opts =

Re: Update on ongoing 1.3.5 release

2009-10-04 Thread Alex Boisvert
Alright, I've got the jruby spec failures in check now. If anybody with a Mac has a few spare minutes today, could you run the specs and make sure everything passes on OS X? Now back to the actual release process... alex

[VOTE] Buildr 1.3.5 release

2009-10-04 Thread Alex Boisvert
: BUILDR-56 Download Scala artifacts if not available locally * Added: BUILDR-163 cobertura:check (Marko Sibakov, Daniel Spiewak). * Added: BUILDR-295 Eclipse task: make 'M2_REPO' repository variable configurable * Added: BUILDR-300 Make Eclipse task more configurable (Antoine Toulme, Alex

Re: Update on ongoing 1.3.5 release

2009-10-04 Thread Alex Boisvert
On Sun, Oct 4, 2009 at 3:49 PM, Rhett Sutphin rh...@detailedbalance.netwrote: I'm seeing 5 failures on OS X 10.6.1 in Hash ::from_java_properties. All the specs fail on the same line with the same error: can't coerce to char array

Re: [VOTE] Buildr 1.3.5 release

2009-10-04 Thread Alex Boisvert
Vote cancelled until we figure out the Mac OS X issue reported by Rhett. alex On Sun, Oct 4, 2009 at 3:03 PM, Alex Boisvert alex.boisv...@gmail.comwrote: We're voting on the source distributions available here: http://people.apache.org/~boisvert/buildr/1.3.5/dist/http://people.apache.org

Re: Update on ongoing 1.3.5 release

2009-10-04 Thread Alex Boisvert
On Sun, Oct 4, 2009 at 4:22 PM, Assaf Arkin as...@labnotes.org wrote: On Sun, Oct 4, 2009 at 3:49 PM, Rhett Sutphin rh...@detailedbalance.net wrote: Hi Alex, On Oct 4, 2009, at 2:32 PM, Alex Boisvert wrote: Alright, I've got the jruby spec failures in check now. If anybody

Re: Update on ongoing 1.3.5 release

2009-10-05 Thread Alex Boisvert
Ok, since we got 3 different confirmations that things work on OS X, I'm going to restart the release vote process. alex On Sun, Oct 4, 2009 at 7:31 PM, Rhett Sutphin rh...@detailedbalance.netwrote: Hi, On Oct 4, 2009, at 6:55 PM, Assaf Arkin wrote: On Sun, Oct 4, 2009 at 4:18 PM, Alex

[VOTE] Buildr 1.3.5 release (take 2)

2009-10-05 Thread Alex Boisvert
locally * Added: BUILDR-163 cobertura:check (Marko Sibakov, Daniel Spiewak). * Added: BUILDR-295 Eclipse task: make 'M2_REPO' repository variable configurable * Added: BUILDR-300 Make Eclipse task more configurable (Antoine Toulme, Alex Boisvert) * Change: Upgraded to rubyforge-1.0.5

Re: [VOTE] Buildr 1.3.5 release (take 2)

2009-10-06 Thread Alex Boisvert
...@gmail.com wrote: +1 with reservations. I'm not thrilled with the idea of pushing out 1.3.5 as it is, but I can't refute the reasons to do it. :-) Why? Assaf Daniel On Oct 5, 2009, at 1:03 PM, Alex Boisvert alex.boisv...@gmail.com wrote: We're voting on the source distributions

Re: [VOTE] Buildr 1.3.5 release (take 2)

2009-10-06 Thread Alex Boisvert
On Tue, Oct 6, 2009 at 6:04 PM, Rhett Sutphin rh...@detailedbalance.netwrote: Does an up vote on these endorse http://people.apache.org/~boisvert/buildr/1.3.5/dist/buildr-1.3.5.gemhttp://people.apache.org/%7Eboisvert/buildr/1.3.5/dist/buildr-1.3.5.gem ? I ask because it is missing the

Re: [VOTE] Buildr 1.3.5 release (take 2)

2009-10-07 Thread Alex Boisvert
: http://people.apache.org/~boisvert/buildr/1.3.5/site/coverage/ alex On Tue, Oct 6, 2009 at 10:31 PM, Rhett Sutphin rh...@detailedbalance.netwrote: +1 on the source package, then. Rhett On Oct 6, 2009, at 10:01 PM, Alex Boisvert wrote: On Tue, Oct 6, 2009 at 6:04 PM, Rhett Sutphin rh

Re: [VOTE] Buildr 1.3.5 release (take 2)

2009-10-09 Thread Alex Boisvert
The vote passed with 5 +1 (including 1 non-binding). Thanks everyone for trying it and reporting issues. I'll get the site and packages updated asap. alex On Mon, Oct 5, 2009 at 12:02 PM, Alex Boisvert alex.boisv...@gmail.comwrote: We're voting on the source distributions available here

Re: [VOTE] Buildr 1.3.5 release (take 2)

2009-10-09 Thread Alex Boisvert
Everything pushed to apache.org and rubyforge.org now. RubyForge release announced here: http://rubyforge.org/forum/forum.php?forum_id=35102 Just waiting for apache.org servers to sync up to send official release announcements... alex On Fri, Oct 9, 2009 at 7:28 AM, Alex Boisvert alex.boisv

[ANNOUNCE] Apache Buildr 1.3.5 Released

2009-10-10 Thread Alex Boisvert
: make 'M2_REPO' repository variable configurable * Added: BUILDR-300 Make Eclipse task more configurable (Antoine Toulme, Alex Boisvert) * Change: Upgraded to rubyforge-1.0.5 and net-ssh 2.0.15 * Change: Monkey-Patched FileUtils::sh on JRuby to use POSIX `system` * Change: Updated to Rake 0.8.7

Re: Discuss: Buildr 1.3.5

2009-10-10 Thread Alex Boisvert
Now that 1.3.5 is out, my personal outlook for the coming weeks looks like: -Merging Daniel's continuous compilation branch -Dig into RJB segfaults with JDK 1.6 (though, not guaranteeing results) -Adding specs and cleaning up shell support -Adding buildfile examples to the website (if nobody gets

Meetup during ApacheCon

2009-10-14 Thread Alex Boisvert
Are you coming in the Bay Area for ApacheCon (Oakland, CA @ Nov 2-6)? Interested in meeting fellow buildrs? A few of us will be attending or live in proximity so we'll try to organize an informal meetup. alex

Re: BUILDR-334: Eclipse .classpath files use absolute paths for library entries.

2009-10-29 Thread Alex Boisvert
Thanks! I've applied the patch now. And while I was at it, I added a way to declare classpath variables so that the generated .classpath files remain portable even if you have libraries located outside the project. We already did this for M2_REPO but now you can define your own variables.

November Board Report

2009-11-05 Thread Alex Boisvert
I wrote a draft of our November board report at: http://cwiki.apache.org/confluence/display/BUILDR/November+2009+Board+Report As always, feel free to edit or comment... I'll be sending it to the board on Sunday Nov. 8th. alex

Tagline

2009-11-05 Thread Alex Boisvert
I attended the media training at ApacheCon earlier this week and as part of the day's discussions, I submitted our current project tagline The build system that doesn't suck to our group for feedback. The group was mostly composed of technical folks and one non-technical person (Sally, our

Re: Bug in linking additional test-folder?

2009-11-07 Thread Alex Boisvert
Ok, I've gone ahead and implemented dependency/ordering between extensions (before_define / after_define)* à la Rake*. https://svn.apache.org/viewvc?view=revisionrevision=833791 alex On Thu, Nov 5, 2009 at 7:44 AM, Alex Boisvert alex.boisv...@gmail.comwrote: (Moving to dev@) This issue

Bundled Buildr + JRuby distribution

2009-11-10 Thread Alex Boisvert
Hi, I've created an experimental distribution of Buildr 1.3.5 and JRuby 1.4.0 and made it available at: http://people.apache.org/~boisvert/buildr-1.3.5-jruby-1.4.0.zip The distro is 15M -- not too bad. I've trimmed the packaged JRuby of everything I could that didn't affect functionality, such

Re: Bundled Buildr + JRuby distribution

2009-11-10 Thread Alex Boisvert
the shebang in the buildr script to point to the copy of JRuby that was bundled, instead of #!/usr/bin/env jruby. /Nick On Nov 10, 2009, at 16:42 , Alex Boisvert wrote: H for a start there's two big issues with this distro. First, if you already have jruby in your PATH, things get

Re: Bundled Buildr + JRuby distribution

2009-11-16 Thread Alex Boisvert
On Mon, Nov 16, 2009 at 7:21 AM, Daniel Spiewak djspie...@gmail.com wrote: I forgot about that. Our JRuby code does require jruby-ffi. Is it possible to bundle the appropriate native libs within a JRuby distribution? Actually, the libs are already there.

Fwd: [RubyForge] Gem index has been shut down

2009-11-22 Thread Alex Boisvert
Does anybody want to update our release scripts to update the gemcutter index? I'm not too familiar with gemcutter yet. It is only a matter of adding gem push ? alex -- Forwarded message -- From: nore...@rubyforge.org Date: Sat, Nov 21, 2009 at 7:17 PM Subject: [RubyForge] Gem

Re: [RubyForge] Gem index has been shut down

2009-11-23 Thread Alex Boisvert
On Sun, Nov 22, 2009 at 4:03 PM, Assaf Arkin as...@labnotes.org wrote: On Sun, Nov 22, 2009 at 8:30 AM, Alex Boisvert alex.boisv...@gmail.com wrote: Does anybody want to update our release scripts to update the gemcutter index? I'm not too familiar with gemcutter yet. It is only

Re: Tagline

2009-12-08 Thread Alex Boisvert
Thanks to everybody who sent in their taglines. Anyone wants to suggest more taglines, you have another 48 hours to do so. After that, we'll start voting. alex On Mon, Nov 9, 2009 at 11:58 AM, Shane Witbeck sh...@digitalsanctum.comwrote: - Buildr, elegant builds don't have to be hard -

Re: POM uploaded multiple times for attached artifacts

2010-02-11 Thread Alex Boisvert
Yes, the patch looks good. Please open a Jira and I'll apply it. Thanks for your help! On Thu, Feb 11, 2010 at 3:27 AM, Pepijn Van Eeckhoudt pepijn.vaneeckho...@luciad.com wrote: I was reviewing my previous attempt and was able to throw out some redundant stuff. This should be a bit better

Re: Native ant support in JRuby 1.5

2010-02-19 Thread Alex Boisvert
On Fri, Feb 19, 2010 at 12:39 PM, Rhett Sutphin rh...@detailedbalance.netwrote: The JRuby team just announced that JRuby 1.5 is going to have built-in support for ruby-language access to ant tasks: http://www.engineyard.com/blog/2010/rake-and-ant-together-a-pick-it-n-stick-it-approach/ I

Re: Native ant support in JRuby 1.5

2010-02-19 Thread Alex Boisvert
On Fri, Feb 19, 2010 at 12:58 PM, Rhett Sutphin rh...@detailedbalance.netwrote: It is interesting to see how their (presumably independent) design for rake/ant integration works. It seems to be pretty similar to antwrap except that their treatment of nested elements uses an implicit target

Re: Improved Maven repository handling

2010-02-23 Thread Alex Boisvert
On Wed, Feb 17, 2010 at 11:54 PM, Pepijn Van Eeckhoudt pepijn.vaneeckho...@luciad.com wrote: Hi, I'm investigating how I can make build a better behaved citizen when it comes to uploading stuff to a maven repository. Specifically I would like to improve the handling of snapshot uploads.

Re: Idea 7x issues

2010-02-23 Thread Alex Boisvert
On Tue, Feb 23, 2010 at 9:18 PM, Alex Boisvert alex.boisv...@gmail.comwrote: Any committer wants to step in and review these patches? https://issues.apache.org/jira/browse/BUILDR-376 https://issues.apache.org/jira/browse/BUILDR-377 I don't use IDEA and I'm not familiar with their project

Next release

2010-02-27 Thread Alex Boisvert
Builders far and wide, We've got a decent amount of improvements and bug fixes done since October / Buildr 1.3.5 so I'd like to propose a release in the March timeframe. More specifically, I'd like to do a release candidate around March 13/14th and hopefully a final release March 27/28th. This

Re: Next release

2010-02-27 Thread Alex Boisvert
major release for Buildr. Daniel On Sat, Feb 27, 2010 at 5:05 PM, Alex Boisvert alex.boisv...@gmail.com wrote: Builders far and wide, We've got a decent amount of improvements and bug fixes done since October / Buildr 1.3.5 so I'd like to propose a release in the March timeframe

Re: Next release

2010-02-27 Thread Alex Boisvert
On Sat, Feb 27, 2010 at 3:08 PM, Antoine Toulme anto...@lunar-ocean.comwrote: OK for me - I guess the big improvement on that release would also be a standalone version with jruby ? Good question. Given that JRuby is not licensed under ASL, this will have to be somewhat separate from the

New committer: Antoine Toulme

2010-03-03 Thread Alex Boisvert
Greetings, I'm my pleasure to announce that Antoine Toulme has been voted as a new committer to the Buildr project. Antoine has been active on the Buildr mailing list for some time, submitted a number of patches (bug fixes + enhancements), created a plugin (Buildr4OSGI) and blogged about Buildr.

Re: Application spec fails

2010-03-04 Thread Alex Boisvert
Yes, known issue... I was waiting to make up my mind on it. I'll clean it up. alex On Thu, Mar 4, 2010 at 8:21 AM, Antoine Toulme anto...@lunar-ocean.comwrote: This spec fails ./spec/core/application_spec.rb:28 with this message 'Buildr::Application home_dir should point to existing

Re: Application spec fails

2010-03-04 Thread Alex Boisvert
yet though): You can expect that folder to be created and existing if ENV['home'] is set. WDYT ? On Thu, Mar 4, 2010 at 08:36, Alex Boisvert alex.boisv...@gmail.comwrote: Yes, known issue... I was waiting to make up my mind on it. I'll clean it up. alex On Thu, Mar 4, 2010 at 8

Re: Ant tasks version handling

2010-03-04 Thread Alex Boisvert
On Thu, Mar 4, 2010 at 4:29 AM, Pepijn Van Eeckhoudt pepijn.vaneeckho...@luciad.com wrote: On 3/3/2010 20:07, Alex Boisvert wrote: I've started migrating all these artifact requirements to use artifact_ns() such that they are easier to configure, through buildr.yaml or programmatically

Re: Idea 7x issues

2010-03-05 Thread Alex Boisvert
AM, Alex Boisvert alex.boisv...@gmail.comwrote: On Tue, Feb 23, 2010 at 9:18 PM, Alex Boisvert alex.boisv...@gmail.com wrote: Any committer wants to step in and review these patches? https://issues.apache.org/jira/browse/BUILDR-376 https://issues.apache.org/jira/browse/BUILDR-377

JDK 1.5 and later

2010-03-07 Thread Alex Boisvert
Up to now, Buildr has supported JDK 1.4 and later. I'm not entirely certainly that everything worked on JDK 1.4 as I've never tried it myself and we've never received any complaints regarding 1.4 compatibility. In any case, many of our dependencies are moving or have moved to 1.5 or later (e.g.

Re: invoke_with_call_chain not restoring call chain correctly

2010-03-15 Thread Alex Boisvert
Wheeep! Yes, it's an issue. I'll fix it right away. alex On Mon, Mar 15, 2010 at 10:10 AM, Pepijn Van Eeckhoudt pepijn.vaneeckho...@luciad.com wrote: I'm bumping into unpredictable behaviour related to the call chain handling. It seems invoke_with_call_chain doesn't restore the call chain

Re: Java integration

2010-03-21 Thread Alex Boisvert
Personally, I'm still enjoying using MRI more than JRuby. If it wasn't for installation issues and getting JDK 1.6 working on some machines, I'd be a completely happy camper. I think Daniel illustrated well that we need more than exec(java) functionality to retain the speed and integration we

Re: NoClassDefFoundError : org/apache/buildr/JavaTestFilter in trunk

2010-04-04 Thread Alex Boisvert
On Sun, Apr 4, 2010 at 3:47 PM, Alex Boisvert alex.boisv...@gmail.comwrote: On Sun, Apr 4, 2010 at 2:46 PM, Daniel Spiewak djspie...@gmail.comwrote: I seem to be having problems resolving the JavaTestFilter class in trunk when running Buildr against a Specs-using Scala project. It worked

Re: NoClassDefFoundError : org/apache/buildr/JavaTestFilter in trunk

2010-04-04 Thread Alex Boisvert
precedence that `compile` does (the current version in trunk/ does not). Daniel On Sun, Apr 4, 2010 at 5:54 PM, Alex Boisvert alex.boisv...@gmail.com wrote: On Sun, Apr 4, 2010 at 3:47 PM, Alex Boisvert alex.boisv...@gmail.com wrote: On Sun, Apr 4, 2010 at 2:46 PM, Daniel

Re: svn commit: r930784 - in /buildr/trunk: CHANGELOG lib/buildr/scala/bdd.rb

2010-04-05 Thread Alex Boisvert
really the burden of operation rests with it. We can just add a note or something that users who want to use ScalaTest with ScalaCheck will need to explicitly set their ScalaCheck version to 1.5. Daniel On Sun, Apr 4, 2010 at 11:23 PM, Alex Boisvert alex.boisv...@gmail.com wrote

Re: Seg faults with RJB

2010-04-05 Thread Alex Boisvert
As far as I know, there is more to it. For instance, on one machine I've tried reinstalling RJB with JDK6 to make it work with JDK6 exclusively with no success. alex On Mon, Apr 5, 2010 at 2:13 PM, Antoine Toulme anto...@lunar-ocean.comwrote: I could witness today seg faults with RJB. I

Re: Manifest packaging: not closing the Tempfile ?

2010-04-10 Thread Alex Boisvert
On Sat, Apr 10, 2010 at 10:27 AM, Antoine Toulme anto...@lunar-ocean.comwrote: Line 181 of packaging.rb, we don't close the Tempfile that represents the MANIFEST.MF. I understand that we need to keep the file, but we could maybe close it with unlink set to false ? That sounds like an open

Re: Buildr 1.4.0RC2 is out

2010-05-04 Thread Alex Boisvert
On Tue, May 4, 2010 at 2:28 PM, Antoine Toulme anto...@lunar-ocean.comwrote: We have spec failures on Windows 7, and it looks like we might need to change packaging for that new OS. It would be good to know if the release actually works on Windows. Are the spec failures false negatives, or

Re: 1.4, Windows 7, and a few news

2010-05-19 Thread Alex Boisvert
On Wed, May 19, 2010 at 6:31 PM, Antoine Toulme anto...@lunar-ocean.comwrote: We still have no 1.4 release. The two RCs look good on most OSes, but Windows is not willing to cooperate. I installed a Windows 7 VM and tried to run the specs. They mostly failed on a Rake exception. I can

Re: Fixing the specs on Windows

2010-05-31 Thread Alex Boisvert
Fine by me and thanks for picking that up. Alex On Monday, May 31, 2010, Pepijn Van Eeckhoudt pepijn.vaneeckho...@luciad.com wrote: I've been going through the specs and up until now all failures are related to utime not behaving as expected on windows. I'm changing the specs so that they

Fixing the specs on Windows

2010-05-31 Thread Alex Boisvert
Fine by me and thanks for picking that up. Alex On Monday, May 31, 2010, Pepijn Van Eeckhoudt pepijn.vaneeckho...@luciad.com wrote: I've been going through the specs and up until now all failures are related to utime not behaving as expected on windows. I'm changing the specs so that they

Re: ScalaSpecs jdk6 only ?

2010-06-06 Thread Alex Boisvert
Yeah, let's wait to build that bridge until someone actually wants to cross it. Alex On Sunday, June 6, 2010, Daniel Spiewak djspie...@gmail.com wrote: The only other option would be to ask Eric for a custom build of Specs, and that seems...excessive.  I don't think we should throw out all

Re: looking for suggestions on which maven project to port to buildr

2010-06-09 Thread Alex Boisvert
I don't have a particular affinity to the project, but you might find Cassandra http://github.com/apache/cassandra's ant + ivy build system a good showcase / workout. I'm probably stating the obvious but people can be just as religious about their build system as their programming language. And

T-shirts

2010-06-10 Thread Alex Boisvert
Suppose we had access to a decent (hi-res) version of the Buildr logo and we were to do a batch of Buildr t-shirts through Cafe Press... Imagine a large-ish Buildr logo in front with The Build System that Doesn't Suck below it and the tagline Build Like You Code in the back of the t-shirt. We

Re: Testing

2010-06-10 Thread Alex Boisvert
/atoulme/rjb/commits/master On Thu, Jun 10, 2010 at 14:50, Alex Boisvert alex.boisv...@gmail.comwrote: I haven't looked at the details and the ChangeLog is rather evasive; were there any fixes since RJB 1.2.0 that would help with MRI + JDK6? alex On Thu, Jun 10, 2010 at 2:42 PM, Antoine

Re: all-in-one package distribution

2010-06-14 Thread Alex Boisvert
+1 for RubyForge. I'm fine with jruby.org as well. alex On Mon, Jun 14, 2010 at 5:49 PM, Antoine Toulme anto...@lunar-ocean.comwrote: We're days away from the release (It will happen this week, I promise). Our all-in-one package is jruby+buildr, using a script put together by Alex. It

Re: Ant 1.8.1 upgrade requires Antwrap changes

2010-06-30 Thread Alex Boisvert
Sorry, I don't see how antwrap is involved in this issue. Care to elaborate? (I didn't see any dependency on TraX in antwrap) alex On Tue, Jun 29, 2010 at 11:31 AM, Antoine Toulme anto...@lunar-ocean.comwrote: It looked like a small update, but Ant 1.8.1 actually stops depending on

Re: [VOTE] Buildr 1.4.1 release

2010-07-04 Thread Alex Boisvert
+1 for the release; though I won't be able to test it until Tuesday. The rationale for such quick release is to resolve an install issue with json-pure dependency. And we agreed to handle install issues more promptly than in the past. alex On Friday, July 2, 2010, Rhett Sutphin

Re: Back to the grind for 1.4.2

2010-07-08 Thread Alex Boisvert
I suggest we move it to the wiki as second-tier documentation, with some mention of about marginal effectiveness. alex On Thursday, July 8, 2010, Shane Witbeck sh...@digitalsanctum.com wrote: I commented on the issue I reported about the Nailgun doc not being accurate/up to date. I'm wondering

Re: Scala 2.8 is out!

2010-07-14 Thread Alex Boisvert
Need to wait a little bit until all dependencies (specs, scalatest, scalacheck) are released for Scala 2.8. It's not binary compatible with previous versions. alex On Wed, Jul 14, 2010 at 12:07 PM, Antoine Toulme anto...@lunar-ocean.comwrote: So we shall support it for our next release.

Re: File::SEPARATOR on Windows

2010-07-16 Thread Alex Boisvert
Yeah, see buildr/core/utils.rb # Just like File.expand_path, but for windows systems it # capitalizes the drive name and ensures backslashes are used def normalize_path(path, *dirs) ... end Sounds like Commands.path_to_bin should use normalize_path() instead of

Re: Functional testing harness

2010-07-22 Thread Alex Boisvert
I like it. Previous comments already cover what I would have noted. We can start small and grow from there. alex On Wed, Jul 21, 2010 at 9:45 AM, Antoine Toulme anto...@lunar-ocean.comwrote: I'm looking for volunteers to take a quick look at the patch attached to:

August 2010 Board Report

2010-08-12 Thread Alex Boisvert
I wrote a first draft of our quarterly board report, https://cwiki.apache.org/confluence/display/BUILDR/August+2010+Board+Report Feel free to comment/edit.I will submit it tomorrow after 9pm EST. thanks, alex

Re: javac and the classpath

2010-08-28 Thread Alex Boisvert
I'm curious to see the spec; Java::Commands.java always forks a new java process so it shouldn't change the current application classpath. Maybe I'm missing something? alex On Sat, Aug 28, 2010 at 5:11 PM, Antoine Toulme anto...@lunar-ocean.comwrote: I am writing specs for the javac command

Re: javac and the classpath

2010-08-28 Thread Alex Boisvert
Oh, sorry, you're talking about javac... but same thing, I'm not seeing it.Maybe you can open an issue and attach your spec? alex On Sat, Aug 28, 2010 at 5:29 PM, Alex Boisvert alex.boisv...@gmail.comwrote: I'm curious to see the spec; Java::Commands.java always forks a new java

Re: svn commit: r998411 - /buildr/trunk/spec/core/application_spec.rb

2010-09-18 Thread Alex Boisvert
Antoine, how about: Gem.source_index.should_receive(:search).at_least(:once).and_return([]) instead of stub? alex On Fri, Sep 17, 2010 at 11:16 PM, toulm...@apache.org wrote: Author: toulmean Date: Sat Sep 18 06:16:39 2010 New Revision: 998411 URL:

Re: Build failed in Hudson: Buildr-ci-build-1.9 #25

2010-09-18 Thread Alex Boisvert
I upgraded to vscaladoc 1.2-m1 a few minutes ago. On Sat, Sep 18, 2010 at 6:46 AM, Antoine Toulme anto...@lunar-ocean.comwrote: Very funny... now that we use snapshots, we have trouble with our own build as it tries to update snapshots. Ah the irony. I'll try to move us to a dot version of

Re: [VOTE] Buildr 1.4.2

2010-09-18 Thread Alex Boisvert
Thanks Antoine, I'm glad to see 1.4.2 reaching release voting stage :) Here's my +1. alex On Sat, Sep 18, 2010 at 5:41 PM, Antoine Toulme anto...@lunar-ocean.comwrote: We're voting on the source distributions available here: http://people.apache.org/~toulmean/buildr/1.4.2/dist/

Re: Artifacts and Repositories

2010-09-23 Thread Alex Boisvert
Hi Donald, Sorry if I didn't answer earlier, I was still munging on implications of your design proposal. I do see the immediate values of: 1) adding repositories.snapshot_to to upload SNAPSHOTs to a different repo (if defined); this would be consistent with Maven practices and I think we

Re: Build failed in Hudson: Buildr-ci-build #134

2010-09-23 Thread Alex Boisvert
Yep, let's revert until fixed. alex On Thu, Sep 23, 2010 at 4:04 PM, Antoine Toulme anto...@lunar-ocean.comwrote: Wow, that looks like a nasty bug for RJB ? -- Forwarded message -- From: Apache Hudson Server hud...@hudson.apache.org Date: Thu, Sep 23, 2010 at 16:00

Re: Artifacts and Repositories

2010-09-24 Thread Alex Boisvert
On Thu, Sep 23, 2010 at 6:52 PM, Peter Donald pe...@realityforge.orgwrote: On Fri, Sep 24, 2010 at 9:08 AM, Alex Boisvert alex.boisv...@gmail.com wrote: Hi Donald, It is Peter :) Ah! Damn. Sorry about that. My fingers sometimes have a life of their own :-\ 2) adding download_from

New committer: Peter Donald

2010-10-01 Thread Alex Boisvert
Hey Builders, I'm glad to announce that Peter Donald has been elected a new committer to Apache Buildr. Peter's been pretty busy since joining our community circa March 2010. He's built a good number of plugins (buildr-bnd, buildr-ipojo, buildr-jaxb-xjc, buildr-iidea) and submitted enough

stackoverflow

2010-10-06 Thread Alex Boisvert
Looks like we're getting more questions asked via stackoverflow.com. Does anybody know how to create a twitter feed based on stackoverflow questions tagged with buildr? alex

Re: stackoverflow

2010-10-06 Thread Alex Boisvert
6, 2010 at 11:05 AM, Alex Boisvert alex.boisv...@gmail.com wrote: Looks like we're getting more questions asked via stackoverflow.com. Does anybody know how to create a twitter feed based on stackoverflow questions tagged with buildr? alex -- vic Quaerendo invenietis.

Re: stackoverflow

2010-10-06 Thread Alex Boisvert
-ocean.comwrote: Why not do that with the buildr account directly ? I can resend the password if needed. On Wed, Oct 6, 2010 at 09:39, Alex Boisvert alex.boisv...@gmail.com wrote: They do :)I just didn't know about them. Thanks for the link I've now created the twitter account

Preparing for 1.4.3 release

2010-10-12 Thread Alex Boisvert
I'm preparing for a 1.4.3 release to be out towards the end of this week (Friday-ish). The main driver is to (promptly) publish a release that corrects the zipfile corruption bug introduced in 1.4.2. If you have bugs you absolutely want to see resolved in this release or anything else you want

Re: Dependencies to POMs

2010-10-13 Thread Alex Boisvert
(not concealing that I have two left hands for Ruby). Tammo On Fri, Aug 6, 2010 at 06:51, Alex Boisvert alex.boisv...@gmail.com wrote: Hi Tammo, I've been helping to migrate a project to Buildr and we'll need to publish poms with dependencies so I've started thinking about this. I'm going

[VOTE] Buildr 1.4.3 release

2010-10-13 Thread Alex Boisvert
We're voting on the source distributions available here: http://people.apache.org/~boisvert/buildr/1.4.3/dist/ Specifically: http://people.apache.org/~boisvert/buildr/1.4.3/dist/buildr-1.4.3.tgz http://people.apache.org/~boisvert/buildr/1.4.3/dist/buildr-1.4.3.zip The documentation generated for

  1   2   3   >