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 56261 invoked from network); 5 Mar 2001 17:14:06 -0000 Received: from dnai-216-15-97-206.cust.dnai.com (HELO betaversion.org) (216.15.97.206) by h31.sny.collab.net with SMTP; 5 Mar 2001 17:14:06 -0000 Received: from nagoya-a.betaversion.org (nagoya-a.javasoft.com [204.160.241.225]) by betaversion.org (8.9.3+Sun/8.9.3) with ESMTP id JAA21475 for ; Mon, 5 Mar 2001 09:18:17 -0800 (PST) Received: (from nobody@localhost) by nagoya-a.betaversion.org (8.9.3+Sun/8.9.3) id JAA03678; Mon, 5 Mar 2001 09:13:07 -0800 (PST) Date: Mon, 5 Mar 2001 09:13:07 -0800 (PST) Message-Id: <200103051713.JAA03678@nagoya-a.betaversion.org> From: bugzilla@apache.org To: ant-dev@jakarta.apache.org Cc: Subject: [Bug 843] New - Ant task carries over property values from previous ant call X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N http://nagoya.apache.org/bugzilla/show_bug.cgi?id=843 *** shadow/843 Mon Mar 5 09:13:07 2001 --- shadow/843.tmp.3675 Mon Mar 5 09:13:07 2001 *************** *** 0 **** --- 1,55 ---- + +============================================================================+ + | Ant task carries over property values from previous ant call | + +----------------------------------------------------------------------------+ + | Bug #: 843 Product: Ant | + | Status: NEW Version: 1.3 | + | Resolution: Platform: PC | + | Severity: Normal OS/Version: Windows NT/2K | + | Priority: Component: Core tasks | + +----------------------------------------------------------------------------+ + | Assigned To: ant-dev@jakarta.apache.org | + | Reported By: marzolfb@yahoo.com | + | CC list: Cc: | + +----------------------------------------------------------------------------+ + | URL: | + +============================================================================+ + | DESCRIPTION | + As a test I created two ant files, build1.xml and build2.xml. The source for + these files is: + + build1.xml: + + + + + + + + + build2.xml: + + + + + + + + + When I call ant via: + + ant -f build1.xml + + the output I receive is: + + Buildfile: build1.xml + + build: + + build: + [echo] antfile: build1.xml + + BUILD SUCCESSFUL + + I would expect that it would display the following instead: + + [echo] antfile: build2.xml