build.properties revision 0
0N/A#
0N/A# Copyright 2007 Sun Microsystems, Inc. All Rights Reserved.
0N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A#
0N/A# This code is free software; you can redistribute it and/or modify it
0N/A# under the terms of the GNU General Public License version 2 only, as
0N/A# published by the Free Software Foundation. Sun designates this
0N/A# particular file as subject to the "Classpath" exception as provided
0N/A# by Sun in the LICENSE file that accompanied this code.
0N/A#
0N/A# This code is distributed in the hope that it will be useful, but WITHOUT
0N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A# version 2 for more details (a copy is included in the LICENSE file that
0N/A# accompanied this code).
0N/A#
0N/A# You should have received a copy of the GNU General Public License version
0N/A# 2 along with this work; if not, write to the Free Software Foundation,
0N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A#
0N/A# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
0N/A# CA 95054 USA or visit www.sun.com if you need additional information or
0N/A# have any questions.
0N/A#
0N/A
0N/A# This is the JDK used to build and run the bootstrap version of javac.
0N/A# The bootstrap javac is used to compile both boostrap versions of the
0N/A# other tools, and product versions of all the tools.
0N/A# Override this path as needed, either on the command line or in
0N/A# one of the standard user build.properties files (see build.xml)
0N/A
0N/A# boot.java.home = /opt/jdk/1.5.0
0N/Aboot.java = ${boot.java.home}/bin/java
0N/Aboot.javac = ${boot.java.home}/bin/javac
0N/Aboot.javac.target = 5
0N/A
0N/A# This is the JDK used to run the product version of the tools,
0N/A# for example, for testing. If you're building a complete JDK, specify that.
0N/A# Override this path as needed, either on the command line or in
0N/A# one of the standard user build.properties files (see build.xml)
0N/A
0N/A# target.java.home = /opt/jdk/1.6.0
0N/Atarget.java = ${target.java.home}/bin/java
0N/A
0N/A# Version info -- override as needed
0N/Ajdk.version = 1.7.0
0N/Abuild.number = b00
0N/Amilestone = internal
0N/A
0N/A# FIXME -- these need to match the standard values
0N/A# If we include date in full.version (ie for developer build)
0N/A# we will need to make sure the build is idempotent (i.e.
0N/A# repeated builds don't rebuild the tools, because of new
0N/A# timestamps
0N/A# FIXME -- need to include openjdk as needed
0N/Arelease = ${jdk.version}-${milestone}
0N/Abootstrap.release = ${release}_bootstrap
0N/Afull.version = ${release}-${build.number}
0N/Abootstrap.full.version = ${bootstrap.release}-${build.number}
0N/A
0N/A# options for the <javac> tasks used to compile the tools
0N/Ajavac.target = 6
0N/Ajavac.debug = true
0N/Ajavac.debuglevel = source,lines
0N/Ajavac.no.jdk.warnings = -XDignore.symbol.file=true
0N/A# set the following to -version to verify the versions of javac being used
0N/Ajavac.version.opt =
0N/A# in time, there should be no exceptions to -Xlint:all
0N/Ajavac.lint.opts = -Xlint:all,-unchecked,-deprecation,-fallthrough,-cast,-serial -Werror
0N/A
0N/A# options for the <javadoc> task for javac
0N/Ajavadoc.jls3.url=http://java.sun.com/docs/books/jls/
0N/Ajavadoc.jls3.cite=&lt;a href=&quot;${javadoc.jls3.url}&quot;&gt;The Java Language Specification, Third Edition&lt;/a&gt;
0N/Ajavadoc.jls3.option=-tag "jls3:a:See &lt;cite&gt;${javadoc.jls3.cite}&lt;/cite&gt;:"
0N/A
0N/A# jtreg, used to run the JDK regression tests
0N/A# Override this path as needed, either on the command line or in
0N/A# one of the standard user build.properties files (see build.xml)
0N/A
0N/A# jtreg.home = /opt/jtreg/3.2.2_02
0N/A
0N/A# findbugs
0N/A# Override this path as needed, either on the command line or in
0N/A# one of the standard user build.properties files (see build.xml)
0N/A
0N/A# findbugs.home = /opt/findbugs/1.2.1
0N/A
0N/A#------------------------------------------------------------
0N/A
0N/A# The following properties define the packages for each of the tools.
0N/A# Syntactically, they should be suitable as arguments for the "includes"
0N/A# parameter of Ant filesets. In particular, note the trailing '/'.
0N/A
0N/Ajavac.includes = \
0N/A javax/annotation/processing/ \
0N/A javax/lang/model/ \
0N/A javax/tools/ \
0N/A com/sun/source/ com/sun/tools/javac/
0N/A
0N/Ajavac.tests = \
0N/A tools/javac
0N/A
0N/Ajavadoc.includes = \
0N/A com/sun/javadoc/ \
0N/A com/sun/tools/javadoc/
0N/A
0N/Ajavadoc.tests = \
0N/A tools/javadoc/
0N/A
0N/Adoclets.includes = \
0N/A com/sun/tools/doclets/
0N/A
0N/Adoclets.tests = \
0N/A com/sun/javadoc/
0N/A
0N/Ajavah.includes = \
0N/A com/sun/tools/javah/
0N/A
0N/Ajavah.tests = \
0N/A tools/javah/
0N/A
0N/Ajavap.includes = \
0N/A sun/tools/javap/
0N/A
0N/Ajavap.tests = \
0N/A tools/javap/
0N/A
0N/Aapt.includes = \
0N/A com/sun/mirror/ \
0N/A com/sun/tools/apt/
0N/A
0N/Aapt.tests = \
0N/A tools/apt/
0N/A
0N/A