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