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