Return-Path: Mailing-List: contact ant-dev-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list ant-dev@jakarta.apache.org Received: (qmail 52661 invoked from network); 1 Dec 2000 18:17:25 -0000 Received: from mailout3-0.nyroc.rr.com (24.92.226.118) by locus.apache.org with SMTP; 1 Dec 2000 18:17:25 -0000 Received: from gretchen (cm-24-25-153-251.nycap.rr.com [24.25.153.251]) by mailout3-0.nyroc.rr.com (8.9.3/8.9.3) with SMTP id NAA23583 for ; Fri, 1 Dec 2000 13:05:25 -0500 (EST) From: "J. Michael Caine" To: Subject: "include" Date: Fri, 1 Dec 2000 13:34:17 -0800 Message-ID: <000101c05bde$75664d80$fb991918@SPECTAURISSW> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 X-Spam-Rating: locus.apache.org 1.6.2 0/1000/N hi. i just downloaded ant a couple of days ago. i quite like it! i have a number of projects that follow a pretty well-defined paradigm, so i'm using a template.xml file to "factor out" commonalities in the project build.xml files. i essentially "include" this template using the task (see example below). this is a little redundant (a target like [template/init] is entered twice) and a bit awkward. could it be worth considering a tag called , under and parallel with ? it could be placed above all of the s for a given project and would effectively "include" all of the targets in the included .xml file. currently, my template looks something like: ------------------------------------------------ then project build.xml's look something like: ------------------------------------------------ ------------------------------------------------ ------------------------------------------------ ... ...