blob: a468f8175fc3d7bfd6d573feaf5a0cfa4a78a705 [file] [log] [blame]
Kelly O'Hair08094f72009-09-21 13:57:02 -07001#
David Katlemanf8deb3b2011-12-06 08:43:57 -08002# Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved.
Kelly O'Hair08094f72009-09-21 13:57:02 -07003# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4#
5# This code is free software; you can redistribute it and/or modify it
6# under the terms of the GNU General Public License version 2 only, as
Kelly O'Hair20b5f2a2010-05-25 15:53:08 -07007# published by the Free Software Foundation. Oracle designates this
Kelly O'Hair08094f72009-09-21 13:57:02 -07008# particular file as subject to the "Classpath" exception as provided
Kelly O'Hair20b5f2a2010-05-25 15:53:08 -07009# by Oracle in the LICENSE file that accompanied this code.
Kelly O'Hair08094f72009-09-21 13:57:02 -070010#
11# This code is distributed in the hope that it will be useful, but WITHOUT
12# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14# version 2 for more details (a copy is included in the LICENSE file that
15# accompanied this code).
16#
17# You should have received a copy of the GNU General Public License version
18# 2 along with this work; if not, write to the Free Software Foundation,
19# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20#
Kelly O'Hair20b5f2a2010-05-25 15:53:08 -070021# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22# or visit www.oracle.com if you need additional information or have any
23# questions.
Kelly O'Hair08094f72009-09-21 13:57:02 -070024#
25
26# Base locations where bundles are located
27slashjava=/java
David Katlemanf8deb3b2011-12-06 08:43:57 -080028drops.dir=${slashjava}/devtools/share/jdk8-drops
Kelly O'Hair08094f72009-09-21 13:57:02 -070029
30# This is the JDK used to build and run the bootstrap version of javac.
31# The bootstrap javac is used to compile both boostrap versions of the
32# other tools, and product versions of all the tools.
33# Override this path as needed, either on the command line or in
34# one of the standard user build.properties files (see build.xml)
35javac.jar=${bootstrap.dir}/lib/javac.jar
36
Kelly O'Hair7a3e45c2009-11-11 11:19:10 -080037# The tools.jar is needed in the classpath to compile these sources
38jdk.home=${java.home}/..
39tools.jar=${jdk.home}/lib/tools.jar
40
Kelly O'Hair08094f72009-09-21 13:57:02 -070041# options for the <javac> tasks used to compile the tools
42javac.source = 7
43javac.target = 7
44javac.debug = true
45javac.no.jdk.warnings = -XDignore.symbol.file=true
46# set the following to -version to verify the versions of javac being used
47javac.version.opt =
48# in time, there should be no exceptions to -Xlint:all
49#javac.lint.opts = -Xlint:all,-unchecked,-deprecation,-fallthrough,-cast,-serial
50javac.lint.opts=
51
52# JVM memory size
53javac.memoryInitialSize = 256m
54javac.memoryMaximumSize = 512m
55
56#------------------------------------------------------------
57
58# Root of output directories
59output.dir=.
60
61# Built files
62build.dir=${output.dir}/build
63build.classes.dir=${build.dir}/classes
64
65# Distributed results
66dist.dir=${output.dir}/dist
67dist.lib.dir=${dist.dir}/lib
68dist.classes.jar=${dist.lib.dir}/classes.jar
69dist.src.zip=${dist.lib.dir}/src.zip
70
Kelly O'Hair2aa71b12009-10-23 11:06:56 -070071# Where all drop sources get placed when downloaded and unzipped
72drop.expanded.dir=${output.dir}/drop
73
74# Location if the sources were included already
75drop.included.dir=./drop_included
Kelly O'Hair08094f72009-09-21 13:57:02 -070076
77# Where patches to drop bundle sources live
78patches.dir=patches
79
Kelly O'Hair08094f72009-09-21 13:57:02 -070080# Sanity information
81sanity.info= Sanity Settings:${line.separator}\
82 ant.home=${ant.home}${line.separator}\
83 ant.version=${ant.version}${line.separator}\
84 ant.java.version=${ant.java.version}${line.separator}\
85 java.home=${java.home}${line.separator}\
86 java.version=${java.version}${line.separator}\
87 os.name=${os.name}${line.separator}\
88 os.arch=${os.arch}${line.separator}\
89 os.version=${os.version}${line.separator}\
90 bootstrap.dir=${bootstrap.dir}${line.separator}\
91 javac.jar=${javac.jar}${line.separator}\
92 javac.memoryInitialSize=${javac.memoryInitialSize}${line.separator}\
93 javac.memoryMaximumSize=${javac.memoryMaximumSize}${line.separator}\
94 javac.source=${javac.source}${line.separator}\
95 javac.debug=${javac.debug}${line.separator}\
96 javac.target=${javac.target}${line.separator}\
97 javac.version.opt=${javac.version.opt}${line.separator}\
98 javac.lint.opts=${javac.lint.opts}${line.separator}\
99 javac.no.jdk.warnings=${javac.no.jdk.warnings}${line.separator}\
100 output.dir=${output.dir}${line.separator}\
101 build.dir=${build.dir}${line.separator}\
102 dist.dir=${dist.dir}${line.separator}\
103 drop.dir=${drop.dir}${line.separator}\
Andrew John Hughes4b41f782009-11-05 00:02:38 +0000104 drops.dir=${drops.dir}${line.separator}\
Kelly O'Hair08094f72009-09-21 13:57:02 -0700105${line.separator}
106
Kelly O'Hair70d13b12010-06-17 17:19:58 -0700107# Failure messages when source cannot be found on the file system
108failed.nourl.src.message=\
109ERROR: Cannot find source for project ${ant.project.name}.\
110${line.separator}${line.separator}\
111HINT: Try setting drops.dir to indicate where the bundles can be found, \
112or try setting the ant property allow.downloads=true to download the bundle from the URL.\
113${line.separator}\
114e.g. ant -Dallow.downloads=true -OR- ant -Ddrops.dir=some_directory \
115${line.separator}
116
117# Failure message when source cannot be downloaded
118failed.url.src.message=\
119ERROR: Cannot find source for project ${ant.project.name}.\
120${line.separator}${line.separator}\
121HINT: Try setting drops.dir to indicate where the bundles can be found, \
122or try checking the URL with your browser.\
123${line.separator}\
124e.g. ant -Ddrops.dir=some_directory \
125${line.separator}
126
Kelly O'Hair08094f72009-09-21 13:57:02 -0700127#------------------------------------------------------------