Return-Path: Delivered-To: apmail-buildr-users-archive@www.apache.org Received: (qmail 50547 invoked from network); 24 Aug 2010 22:00:12 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 24 Aug 2010 22:00:12 -0000 Received: (qmail 91740 invoked by uid 500); 24 Aug 2010 22:00:12 -0000 Delivered-To: apmail-buildr-users-archive@buildr.apache.org Received: (qmail 91682 invoked by uid 500); 24 Aug 2010 22:00:11 -0000 Mailing-List: contact users-help@buildr.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@buildr.apache.org Delivered-To: mailing list users@buildr.apache.org Received: (qmail 91673 invoked by uid 99); 24 Aug 2010 22:00:11 -0000 Received: from Unknown (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Aug 2010 22:00:11 +0000 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of nickmeet@gmail.com designates 209.85.214.172 as permitted sender) Received: from [209.85.214.172] (HELO mail-iw0-f172.google.com) (209.85.214.172) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Aug 2010 21:59:48 +0000 Received: by iwn3 with SMTP id 3so10073660iwn.17 for ; Tue, 24 Aug 2010 14:59:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=wIhGsUq6rW+zLqZ8s/njFqrbshofhiij148qDBO/AL4=; b=i7egxbTQM4tMJMV1FO3uJFm2/EFjjZ2ZX31Uy4EodUL66rdXhYElRmjYmOCxaHoCCg 9N+y/uL0hgm9qmQIUsZXefZ3zCvJ61/uccpDZkaujRWkMj+jP8Ax51bqsa4KBXbg2nW2 I0Xmc+6ze+4DKQrEmow8IpgEVswVKhznybprs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=GWMEASVJSfwVG9xYJfDaMNWZVHdo3zCeRvDsLyd7Tp67IUI8y7Aif0F3H/zgeVzkGA BERzDltl8WOz8J77ALjAWWDjpFHQNlJoaBO2He6pOakyoUiw3120b1w668vfz5oMsqwt fYoV5FQhSQBQxE6ogK4naUthR80QH+WhYJJhU= MIME-Version: 1.0 Received: by 10.231.174.65 with SMTP id s1mr9314695ibz.3.1282687167071; Tue, 24 Aug 2010 14:59:27 -0700 (PDT) Received: by 10.231.196.91 with HTTP; Tue, 24 Aug 2010 14:59:27 -0700 (PDT) Date: Wed, 25 Aug 2010 00:59:27 +0300 Message-ID: Subject: multi-project directory structure From: Nikos Maris To: users@buildr.apache.org Content-Type: multipart/alternative; boundary=0016363b798cf386f7048e98e009 X-Virus-Checked: Checked by ClamAV on apache.org --0016363b798cf386f7048e98e009 Content-Type: text/plain; charset=ISO-8859-1 Based on doc , the directory structure is killer-app/ __buildfile __la-web/ __teh-api/ __teh-impl/ where buildfile is: define 'killer-app', :version=>"1.0.0" do define 'teh-api', :version=>"1.0.0" do end define 'teh-impl', :version=>"1.0.0" do end define 'la-web', :version=>"1.0.0" do compile.with projects('teh-api', 'teh-impl') eclipse.natures 'org.eclipse.jdt.core.javanature' eclipse.builders 'org.eclipse.jdt.core.javabuilder' eclipse.classpath_containers 'org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6' end end How would the buildfile change, if I moved buildfile to la-web? Regards, Nikos --0016363b798cf386f7048e98e009--