build.properties

changeset 85
ae2bec597586
parent 75
845fa487f0f7
child 86
77708e68db52
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/build.properties	Mon Sep 21 13:57:02 2009 -0700
     1.3 @@ -0,0 +1,103 @@
     1.4 +#
     1.5 +# Copyright 2007-2009 Sun Microsystems, Inc.  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.  Sun designates this
    1.11 +# particular file as subject to the "Classpath" exception as provided
    1.12 +# by Sun 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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    1.25 +# CA 95054 USA or visit www.sun.com if you need additional information or
    1.26 +# have any questions.
    1.27 +#
    1.28 +
    1.29 +# Base locations where bundles are located
    1.30 +slashjava=/java
    1.31 +devtools=${slashjava}/devtools
    1.32 +
    1.33 +# This is the JDK used to build and run the bootstrap version of javac.
    1.34 +# The bootstrap javac is used to compile both boostrap versions of the
    1.35 +# other tools, and product versions of all the tools.
    1.36 +# Override this path as needed, either on the command line or in 
    1.37 +# one of the standard user build.properties files (see build.xml)
    1.38 +javac.jar=${bootstrap.dir}/lib/javac.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 +# Where all drop sources live
    1.71 +drop.dir=${output.dir}/drop
    1.72 +
    1.73 +# Where patches to drop bundle sources live
    1.74 +patches.dir=patches
    1.75 +
    1.76 +# Original source area
    1.77 +orig.dir=src
    1.78 +orig.src.dir=${orig.dir}/share/classes
    1.79 +
    1.80 +# Sanity information
    1.81 +sanity.info= Sanity Settings:${line.separator}\
    1.82 +  ant.home=${ant.home}${line.separator}\
    1.83 +  ant.version=${ant.version}${line.separator}\
    1.84 +  ant.java.version=${ant.java.version}${line.separator}\
    1.85 +  java.home=${java.home}${line.separator}\
    1.86 +  java.version=${java.version}${line.separator}\
    1.87 +  os.name=${os.name}${line.separator}\
    1.88 +  os.arch=${os.arch}${line.separator}\
    1.89 +  os.version=${os.version}${line.separator}\
    1.90 +  bootstrap.dir=${bootstrap.dir}${line.separator}\
    1.91 +  javac.jar=${javac.jar}${line.separator}\
    1.92 +  javac.memoryInitialSize=${javac.memoryInitialSize}${line.separator}\
    1.93 +  javac.memoryMaximumSize=${javac.memoryMaximumSize}${line.separator}\
    1.94 +  javac.source=${javac.source}${line.separator}\
    1.95 +  javac.debug=${javac.debug}${line.separator}\
    1.96 +  javac.target=${javac.target}${line.separator}\
    1.97 +  javac.version.opt=${javac.version.opt}${line.separator}\
    1.98 +  javac.lint.opts=${javac.lint.opts}${line.separator}\
    1.99 +  javac.no.jdk.warnings=${javac.no.jdk.warnings}${line.separator}\
   1.100 +  output.dir=${output.dir}${line.separator}\
   1.101 +  build.dir=${build.dir}${line.separator}\
   1.102 +  dist.dir=${dist.dir}${line.separator}\
   1.103 +  drop.dir=${drop.dir}${line.separator}\
   1.104 +${line.separator}
   1.105 +
   1.106 +#------------------------------------------------------------

mercurial