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