build.properties

changeset 0
373ffda63c9a
child 637
9c07ef4934dd
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/build.properties	Wed Apr 27 01:27:09 2016 +0800
     1.3 @@ -0,0 +1,92 @@
     1.4 +#
     1.5 +# Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved.
     1.6 +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.7 +#
     1.8 +# This code is free software; you can redistribute it and/or modify it
     1.9 +# under the terms of the GNU General Public License version 2 only, as
    1.10 +# published by the Free Software Foundation.  Oracle designates this
    1.11 +# particular file as subject to the "Classpath" exception as provided
    1.12 +# by Oracle in the LICENSE file that accompanied this code.
    1.13 +#
    1.14 +# This code is distributed in the hope that it will be useful, but WITHOUT
    1.15 +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1.16 +# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    1.17 +# version 2 for more details (a copy is included in the LICENSE file that
    1.18 +# accompanied this code).
    1.19 +#
    1.20 +# You should have received a copy of the GNU General Public License version
    1.21 +# 2 along with this work; if not, write to the Free Software Foundation,
    1.22 +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1.23 +#
    1.24 +# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    1.25 +# or visit www.oracle.com if you need additional information or have any
    1.26 +# questions.
    1.27 +#
    1.28 +
    1.29 +# This is the JDK used to build and run the bootstrap version of javac.
    1.30 +# The bootstrap javac is used to compile both boostrap versions of the
    1.31 +# other tools, and product versions of all the tools.
    1.32 +# Override this path as needed, either on the command line or in 
    1.33 +# one of the standard user build.properties files (see build.xml)
    1.34 +javac.jar=${bootstrap.dir}/lib/javac.jar
    1.35 +
    1.36 +# The tools.jar is needed in the classpath to compile these sources
    1.37 +jdk.home=${java.home}/..
    1.38 +tools.jar=${jdk.home}/lib/tools.jar
    1.39 +
    1.40 +# options for the <javac> tasks used to compile the tools
    1.41 +javac.source = 7
    1.42 +javac.target = 7
    1.43 +javac.debug = true
    1.44 +javac.no.jdk.warnings = -XDignore.symbol.file=true
    1.45 +# set the following to -version to verify the versions of javac being used
    1.46 +javac.version.opt = 
    1.47 +# in time, there should be no exceptions to -Xlint:all
    1.48 +#javac.lint.opts = -Xlint:all,-unchecked,-deprecation,-fallthrough,-cast,-serial
    1.49 +javac.lint.opts=
    1.50 +
    1.51 +# JVM memory size
    1.52 +javac.memoryInitialSize = 256m
    1.53 +javac.memoryMaximumSize = 512m
    1.54 +
    1.55 +#------------------------------------------------------------
    1.56 +
    1.57 +# Root of output directories
    1.58 +output.dir=.
    1.59 +
    1.60 +# Built files
    1.61 +build.dir=${output.dir}/build
    1.62 +build.classes.dir=${build.dir}/classes
    1.63 +
    1.64 +# Distributed results
    1.65 +dist.dir=${output.dir}/dist
    1.66 +dist.lib.dir=${dist.dir}/lib
    1.67 +dist.classes.jar=${dist.lib.dir}/classes.jar
    1.68 +dist.src.zip=${dist.lib.dir}/src.zip
    1.69 +
    1.70 +# Sanity information
    1.71 +sanity.info= Sanity Settings:${line.separator}\
    1.72 +  ant.home=${ant.home}${line.separator}\
    1.73 +  ant.version=${ant.version}${line.separator}\
    1.74 +  ant.java.version=${ant.java.version}${line.separator}\
    1.75 +  java.home=${java.home}${line.separator}\
    1.76 +  java.version=${java.version}${line.separator}\
    1.77 +  os.name=${os.name}${line.separator}\
    1.78 +  os.arch=${os.arch}${line.separator}\
    1.79 +  os.version=${os.version}${line.separator}\
    1.80 +  bootstrap.dir=${bootstrap.dir}${line.separator}\
    1.81 +  javac.jar=${javac.jar}${line.separator}\
    1.82 +  javac.memoryInitialSize=${javac.memoryInitialSize}${line.separator}\
    1.83 +  javac.memoryMaximumSize=${javac.memoryMaximumSize}${line.separator}\
    1.84 +  javac.source=${javac.source}${line.separator}\
    1.85 +  javac.debug=${javac.debug}${line.separator}\
    1.86 +  javac.target=${javac.target}${line.separator}\
    1.87 +  javac.version.opt=${javac.version.opt}${line.separator}\
    1.88 +  javac.lint.opts=${javac.lint.opts}${line.separator}\
    1.89 +  javac.no.jdk.warnings=${javac.no.jdk.warnings}${line.separator}\
    1.90 +  output.dir=${output.dir}${line.separator}\
    1.91 +  build.dir=${build.dir}${line.separator}\
    1.92 +  dist.dir=${dist.dir}${line.separator}\
    1.93 +${line.separator}
    1.94 +
    1.95 +#------------------------------------------------------------

mercurial