Browse Source

Moved the inclusion of .ant.properties to the top to give the user a

chance to override build.compiler there (and maybe other variables as
well).
Submitted by:	Paul Philion <philion@acmerocket.com>


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@267821 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 25 years ago
parent
commit
80d35a9391
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      build.xml

+ 4
- 4
build.xml View File

@@ -6,6 +6,10 @@


<project name="Ant" default="main" basedir="."> <project name="Ant" default="main" basedir=".">


<!-- Give user a chance to override without editing this file
(and without typing -D each time it compiles it -->
<property file="${user.home}/.ant.properties" />

<property name="Name" value="Ant"/> <property name="Name" value="Ant"/>
<property name="name" value="ant"/> <property name="name" value="ant"/>
<property name="version" value="1.2alpha"/> <property name="version" value="1.2alpha"/>
@@ -29,10 +33,6 @@


<property name="build.compiler" value="classic"/> <property name="build.compiler" value="classic"/>


<!-- Give user a chance to override without editing this file
(and without typing -D each time it compiles it -->
<property file="${user.home}/.ant.properties" />

<!-- =================================================================== --> <!-- =================================================================== -->
<!-- Check to see what optional dependencies are available --> <!-- Check to see what optional dependencies are available -->
<!-- =================================================================== --> <!-- =================================================================== -->


Loading…
Cancel
Save