Return-Path: Delivered-To: apmail-incubator-buildr-user-archive@locus.apache.org Received: (qmail 5820 invoked from network); 16 Apr 2008 04:01:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 16 Apr 2008 04:01:33 -0000 Received: (qmail 92704 invoked by uid 500); 16 Apr 2008 04:01:34 -0000 Delivered-To: apmail-incubator-buildr-user-archive@incubator.apache.org Received: (qmail 92629 invoked by uid 500); 16 Apr 2008 04:01:33 -0000 Mailing-List: contact buildr-user-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: buildr-user@incubator.apache.org Delivered-To: mailing list buildr-user@incubator.apache.org Received: (qmail 92620 invoked by uid 99); 16 Apr 2008 04:01:33 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Apr 2008 21:01:33 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of harishkswamy@gmail.com designates 209.85.132.249 as permitted sender) Received: from [209.85.132.249] (HELO an-out-0708.google.com) (209.85.132.249) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Apr 2008 04:00:51 +0000 Received: by an-out-0708.google.com with SMTP id b33so625632ana.83 for ; Tue, 15 Apr 2008 21:01:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; bh=qbV74U7zcbTPbEHCEUnWvHE80A9Qr7I+7p/nCFAr1w8=; b=QjUA14HDUgrO3wjYF7MPDwjJw+8byiAoiccas3yRMGWQidOpu+qHSxnM4ZUhOZNj6LhIe6ITP/TzSY/+CAibhzf2GR3pbipnvZu+XB/nrFQVPXIBRy4nvfJ/jVInqT+ON2hI3w9Sz1bhGNEvaP+MAnc4e79MoH1YYEFPM2MpOKc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type; b=cbH37N/fg5pfXsLKp8/zu0TMaOjkxPuVNa9xvKdAObmnn49YijzIRre8Ixh1oyrWhEJuw9vQ3TDfD/LMYRbsh7FhrhbdYbawj2Lhfy62MzuDmZF0UFWZm7FDKdVpeN2+vMn16L3AlRiEGlP5y57Iz/FhzI1/qkODMNoAG3jyuao= Received: by 10.101.70.5 with SMTP id x5mr16438468ank.93.1208318464324; Tue, 15 Apr 2008 21:01:04 -0700 (PDT) Received: by 10.100.9.11 with HTTP; Tue, 15 Apr 2008 21:01:04 -0700 (PDT) Message-ID: <630065140804152101j35d8e602n980e9edfdea556d9@mail.gmail.com> Date: Wed, 16 Apr 2008 00:01:04 -0400 From: "Harish Krishnaswamy" To: buildr-user@incubator.apache.org Subject: Incorrect circular dependency report MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_7921_24119082.1208318464323" X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_7921_24119082.1208318464323 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Buildr incorrectly reports a circular dependency problem when the project structure is slightly different. Here's my project structure... project |---src | |---com | | |---blah |---test | |---com | | |---blah |---resources | |---blah And here's my script snippet... define "project" do ... compile.from("src").with(blah...) ... test.compile.from("test").with(blah...) ... end The test task is complaining about circular dependency. Now if I change the test folder name something else, it works. Seems like a bug. -Harish ------=_Part_7921_24119082.1208318464323--