Return-Path: Delivered-To: apmail-ant-dev-archive@www.apache.org Received: (qmail 93063 invoked from network); 2 Dec 2004 22:06:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 2 Dec 2004 22:06:19 -0000 Received: (qmail 52666 invoked by uid 500); 2 Dec 2004 22:06:17 -0000 Delivered-To: apmail-ant-dev-archive@ant.apache.org Received: (qmail 52624 invoked by uid 500); 2 Dec 2004 22:06:17 -0000 Mailing-List: contact dev-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list dev@ant.apache.org Received: (qmail 52611 invoked by uid 500); 2 Dec 2004 22:06:17 -0000 Received: (qmail 52607 invoked by uid 99); 2 Dec 2004 22:06:17 -0000 X-ASF-Spam-Status: No, hits=-10.0 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Thu, 02 Dec 2004 14:06:17 -0800 Received: (qmail 93023 invoked by uid 1939); 2 Dec 2004 22:06:16 -0000 Date: 2 Dec 2004 22:06:16 -0000 Message-ID: <20041202220616.93022.qmail@minotaur.apache.org> From: jglick@apache.org To: ant-cvs@apache.org Subject: cvs commit: ant/src/main/org/apache/tools/ant/taskdefs ImportTask.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N jglick 2004/12/02 14:06:16 Modified: src/main/org/apache/tools/ant/taskdefs ImportTask.java Log: Trivial Javadoc formatting edits. Revision Changes Path 1.29 +8 -9 ant/src/main/org/apache/tools/ant/taskdefs/ImportTask.java Index: ImportTask.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/ImportTask.java,v retrieving revision 1.28 retrieving revision 1.29 diff -u -r1.28 -r1.29 --- ImportTask.java 28 Apr 2004 09:01:08 -0000 1.28 +++ ImportTask.java 2 Dec 2004 22:06:15 -0000 1.29 @@ -29,27 +29,26 @@ import java.util.Vector; /** - *

* Task to import another build file into the current project. *

* It must be 'top level'. On execution it will read another Ant file * into the same Project. + *

*

* Important: we have not finalized how relative file references - * will be resolved in deep/complex build hierarchies -such as what happens + * will be resolved in deep/complex build hierarchies - such as what happens * when an imported file imports another file. Use absolute references for * enhanced build file stability, especially in the imported files. - * - * Examples + *

+ *

Examples:

*
  - * <import file="../common-targets.xml" />
  + * <import file="../common-targets.xml"/>
    * 
- * Import targets from a file in a parent directory. - *

+ *

Import targets from a file in a parent directory.

*
  - * <import file="${deploy-platform}.xml" />
  + * <import file="${deploy-platform}.xml"/>
    * 
- * Import the project defined by the property deploy-platform + *

Import the project defined by the property deploy-platform.

* * @since Ant1.6 * @ant.task category="control" --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org