build.properties revision 94
168N/A#
168N/A# Copyright 2007-2009 Sun Microsystems, Inc. All Rights Reserved.
168N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
168N/A#
168N/A# This code is free software; you can redistribute it and/or modify it
168N/A# under the terms of the GNU General Public License version 2 only, as
168N/A# published by the Free Software Foundation. Sun designates this
168N/A# particular file as subject to the "Classpath" exception as provided
168N/A# by Sun in the LICENSE file that accompanied this code.
168N/A#
168N/A# This code is distributed in the hope that it will be useful, but WITHOUT
168N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
168N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
168N/A# version 2 for more details (a copy is included in the LICENSE file that
168N/A# accompanied this code).
168N/A#
168N/A# You should have received a copy of the GNU General Public License version
168N/A# 2 along with this work; if not, write to the Free Software Foundation,
168N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
168N/A#
168N/A# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
168N/A# CA 95054 USA or visit www.sun.com if you need additional information or
168N/A# have any questions.
168N/A#
168N/A
168N/A# Base locations where bundles are located
168N/Aslashjava=/java
168N/Adevtools=${slashjava}/devtools
168N/A
168N/A# This is the JDK used to build and run the bootstrap version of javac.
168N/A# The bootstrap javac is used to compile both boostrap versions of the
168N/A# other tools, and product versions of all the tools.
168N/A# Override this path as needed, either on the command line or in
168N/A# one of the standard user build.properties files (see build.xml)
168N/Ajavac.jar=${bootstrap.dir}/lib/javac.jar
168N/A
168N/A# options for the <javac> tasks used to compile the tools
168N/Ajavac.source = 7
168N/Ajavac.target = 7
168N/Ajavac.debug = true
168N/Ajavac.no.jdk.warnings = -XDignore.symbol.file=true
168N/A# set the following to -version to verify the versions of javac being used
168N/Ajavac.version.opt =
168N/A# in time, there should be no exceptions to -Xlint:all
168N/A#javac.lint.opts = -Xlint:all,-unchecked,-deprecation,-fallthrough,-cast,-serial
168N/Ajavac.lint.opts=
168N/A
168N/A# JVM memory size
168N/Ajavac.memoryInitialSize = 256m
168N/Ajavac.memoryMaximumSize = 512m
168N/A
168N/A#------------------------------------------------------------
168N/A
168N/A# Root of output directories
168N/Aoutput.dir=.
168N/A
168N/A# Built files
168N/Abuild.dir=${output.dir}/build
168N/Abuild.classes.dir=${build.dir}/classes
171N/A
171N/A# Distributed results
171N/Adist.dir=${output.dir}/dist
171N/Adist.lib.dir=${dist.dir}/lib
171N/Adist.classes.jar=${dist.lib.dir}/classes.jar
168N/Adist.src.zip=${dist.lib.dir}/src.zip
168N/A
168N/A# Where all drop sources get placed when downloaded and unzipped
168N/Adrop.expanded.dir=${output.dir}/drop
168N/A
168N/A# Location if the sources were included already
168N/Adrop.included.dir=./drop_included
168N/A
168N/A# Where patches to drop bundle sources live
168N/Apatches.dir=patches
168N/A
168N/A# Sanity information
168N/Asanity.info= Sanity Settings:${line.separator}\
168N/A ant.home=${ant.home}${line.separator}\
168N/A ant.version=${ant.version}${line.separator}\
168N/A ant.java.version=${ant.java.version}${line.separator}\
168N/A java.home=${java.home}${line.separator}\
168N/A java.version=${java.version}${line.separator}\
168N/A os.name=${os.name}${line.separator}\
168N/A os.arch=${os.arch}${line.separator}\
168N/A os.version=${os.version}${line.separator}\
168N/A bootstrap.dir=${bootstrap.dir}${line.separator}\
181N/A javac.jar=${javac.jar}${line.separator}\
168N/A javac.memoryInitialSize=${javac.memoryInitialSize}${line.separator}\
168N/A javac.memoryMaximumSize=${javac.memoryMaximumSize}${line.separator}\
168N/A javac.source=${javac.source}${line.separator}\
168N/A javac.debug=${javac.debug}${line.separator}\
168N/A javac.target=${javac.target}${line.separator}\
javac.version.opt=${javac.version.opt}${line.separator}\
javac.lint.opts=${javac.lint.opts}${line.separator}\
javac.no.jdk.warnings=${javac.no.jdk.warnings}${line.separator}\
output.dir=${output.dir}${line.separator}\
build.dir=${build.dir}${line.separator}\
dist.dir=${dist.dir}${line.separator}\
drop.dir=${drop.dir}${line.separator}\
${line.separator}
#------------------------------------------------------------