build.properties revision 553
609N/A#
2887N/A# Copyright (c) 2007, 2009, Oracle and/or its affiliates. All rights reserved.
671N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
671N/A#
671N/A# This code is free software; you can redistribute it and/or modify it
671N/A# under the terms of the GNU General Public License version 2 only, as
671N/A# published by the Free Software Foundation. Oracle designates this
671N/A# particular file as subject to the "Classpath" exception as provided
671N/A# by Oracle in the LICENSE file that accompanied this code.
671N/A#
6982N/A# This code is distributed in the hope that it will be useful, but WITHOUT
6982N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
671N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
671N/A# version 2 for more details (a copy is included in the LICENSE file that
671N/A# accompanied this code).
671N/A#
6982N/A# You should have received a copy of the GNU General Public License version
6982N/A# 2 along with this work; if not, write to the Free Software Foundation,
6982N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
6982N/A#
671N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
671N/A# or visit www.oracle.com if you need additional information or have any
671N/A# questions.
671N/A#
3232N/A
671N/A# This is the JDK used to build and run the bootstrap version of javac.
609N/A# The bootstrap javac is used to compile both boostrap versions of the
609N/A# other tools, and product versions of all the tools.
609N/A# Override this path as needed, either on the command line or in
609N/A# one of the standard user build.properties files (see build.xml)
609N/A
609N/A# boot.java.home = /opt/jdk/1.6.0
609N/Aboot.java = ${boot.java.home}/bin/java
3793N/Aboot.javac = ${boot.java.home}/bin/javac
3793N/Aboot.javac.source = 6
3793N/Aboot.javac.target = 6
3793N/A
3793N/A# This is the JDK used to run the product version of the tools,
3793N/A# for example, for testing. If you're building a complete JDK, specify that.
3793N/A# Override this path as needed, either on the command line or in
3793N/A# one of the standard user build.properties files (see build.xml)
3793N/A
3793N/A# target.java.home = /opt/jdk/1.7.0
3793N/Atarget.java = ${target.java.home}/bin/java
3816N/A
3793N/A# Version info -- override as needed
3793N/Ajdk.version = 1.7.0
3793N/Abuild.number = b00
3793N/Amilestone = internal
3793N/A
3793N/A# FIXME -- these need to match the standard values
3793N/A# If we include date in full.version (ie for developer build)
3793N/A# we will need to make sure the build is idempotent (i.e.
3793N/A# repeated builds don't rebuild the tools, because of new
3793N/A# timestamps
3793N/A# FIXME -- need to include openjdk as needed
3793N/Arelease = ${jdk.version}-${milestone}
3793N/Abootstrap.release = ${release}_bootstrap
2085N/Afull.version = ${release}-${build.number}
609N/Abootstrap.full.version = ${bootstrap.release}-${build.number}
785N/A
609N/A# options for the <javac> tasks used to compile the tools
609N/Ajavac.source = 7
609N/Ajavac.target = 7
609N/Ajavac.debug = true
609N/Ajavac.debuglevel = source,lines
609N/Ajavac.no.jdk.warnings = -XDignore.symbol.file=true
609N/A# set the following to -version to verify the versions of javac being used
609N/Ajavac.version.opt =
609N/A# in time, there should be no exceptions to -Xlint:all
3793N/Ajavac.lint.opts = -Xlint:all,-deprecation -Werror
3793N/A
1749N/A# options for the <javadoc> task for javac
609N/Ajavadoc.jls3.url=http://java.sun.com/docs/books/jls/
609N/Ajavadoc.jls3.cite=&lt;a href=&quot;${javadoc.jls3.url}&quot;&gt;The Java Language Specification, Third Edition&lt;/a&gt;
785N/Ajavadoc.jls3.option=-tag "jls3:a:See &lt;cite&gt;${javadoc.jls3.cite}&lt;/cite&gt;:"
609N/A
609N/A# jtreg, used to run the JDK regression tests
609N/A# Override this path as needed, either on the command line or in
609N/A# one of the standard user build.properties files (see build.xml)
609N/A
609N/A# jtreg.home = /opt/jtreg/3.2.2_02
609N/A
609N/A# findbugs
# Override this path as needed, either on the command line or in
# one of the standard user build.properties files (see build.xml)
# findbugs.home = /opt/findbugs/1.2.1
#------------------------------------------------------------
# The following properties define the packages for each of the tools.
# Syntactically, they should be suitable as arguments for the "includes"
# parameter of Ant filesets. In particular, note the trailing '/'.
javac.includes = \
javax/annotation/processing/ \
javax/lang/model/ \
javax/tools/ \
com/sun/source/ com/sun/tools/javac/
javac.tests = \
tools/javac
#
javadoc.includes = \
com/sun/javadoc/ \
com/sun/tools/javadoc/
javadoc.tests = \
tools/javadoc/
#
doclets.includes = \
com/sun/tools/doclets/
doclets.tests = \
com/sun/javadoc/
#
javah.includes = \
com/sun/tools/javah/
javah.tests = \
tools/javah/
#
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/
#
# The following files require the import JDK to be available
require.import.jdk.files = \
com/sun/tools/javac/nio/*.java
# The following files in the import jdk source directory are required
# in order to compile the files defined in ${require.import.jdk.files}
#
# For NIO, the list of stub files is defined by the contents of the primary
# API packages, together with such types that may be required in order to
# compile the stubs. Some of these dependencies would go away if the stub
# generator were to be improved -- e.g. by removing unnecessary imports.
#
import.jdk.stub.files = \
java/io/File.java \
java/nio/file/**.java \
java/nio/file/attribute/**.java \
java/nio/file/spi/**.java \
java/nio/channels/AsynchronousChannel.java \
java/nio/channels/AsynchronousFileChannel.java \
java/nio/channels/CompletionHandler.java \
java/nio/channels/SeekableByteChannel.java
# The following value is used by the main jtreg target.
# An empty value means all tests
# Override as desired to run a specific set of tests
jtreg.tests =