make/common/CORE_PKGS.gmk

Thu, 14 Nov 2013 10:53:23 +0100

author
ihse
date
Thu, 14 Nov 2013 10:53:23 +0100
changeset 912
a667caba1e84
parent 841
common/makefiles/javadoc/CORE_PKGS.gmk@547316ea137d
child 1133
50aaf272884f
permissions
-rw-r--r--

8027566: Remove the old build system
Reviewed-by: erikj, tbell

ohair@478 1 #
ohair@478 2 # Copyright (c) 2001, 2011, Oracle and/or its affiliates. All rights reserved.
ohair@478 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ohair@478 4 #
ohair@478 5 # This code is free software; you can redistribute it and/or modify it
ohair@478 6 # under the terms of the GNU General Public License version 2 only, as
ohair@478 7 # published by the Free Software Foundation. Oracle designates this
ohair@478 8 # particular file as subject to the "Classpath" exception as provided
ohair@478 9 # by Oracle in the LICENSE file that accompanied this code.
ohair@478 10 #
ohair@478 11 # This code is distributed in the hope that it will be useful, but WITHOUT
ohair@478 12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ohair@478 13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
ohair@478 14 # version 2 for more details (a copy is included in the LICENSE file that
ohair@478 15 # accompanied this code).
ohair@478 16 #
ohair@478 17 # You should have received a copy of the GNU General Public License version
ohair@478 18 # 2 along with this work; if not, write to the Free Software Foundation,
ohair@478 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ohair@478 20 #
ohair@478 21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@478 22 # or visit www.oracle.com if you need additional information or have any
ohair@478 23 # questions.
ohair@478 24 #
ohair@478 25
ohair@478 26 # EXCLUDE_PKGS is the list of packages to exclude from the
ihse@839 27 # Java API Specification. Do not add these to CORE_PKGS.
ohair@478 28 # The concatenation of EXCLUDE_PKGS and CORE_PKGS
ohair@478 29 # should make up the list of all packages under the
ohair@478 30 # src/shared/classes directory of the JDK source tree.
ohair@478 31 #
ihse@839 32 EXCLUDE_PKGS = \
ihse@839 33 java.awt.peer \
ihse@839 34 java.awt.dnd.peer \
ihse@839 35 sun.* \
ihse@839 36 com.sun.* \
ihse@839 37 org.apache.* \
ihse@839 38 org.jcp.* \
ihse@839 39 org.w3c.dom.css \
ihse@839 40 org.w3c.dom.html \
ihse@839 41 org.w3c.dom.stylesheets \
ihse@839 42 org.w3c.dom.traversal \
ihse@839 43 org.w3c.dom.ranges \
ihse@839 44 org.omg.stub.javax.management.remote.rmi
ohair@478 45
ohair@478 46 #
ohair@478 47 # ACTIVE_JSR_PKGS are packages that are part of an active JSR process--
ohair@478 48 # one that is doing its own review. These packages are not included when
ohair@478 49 # creating diff pages for the platform's JCP process.
ihse@839 50 #
ihse@839 51 # (see /java/pubs/apisrc/jdk/6.0/beta/make/docs/active_jsr_pkgs)
ohair@478 52 # Note:
ohair@478 53 # This is a list of regular expressions. So foo.* matches "foo" and "foo.bar".
ohair@478 54 #
ohair@478 55 ACTIVE_JSR_PKGS= \
ihse@839 56 java.lang.invoke \
ihse@839 57 java.sql \
ihse@839 58 javax.activation \
ihse@839 59 javax.annotation.* \
ihse@839 60 javax.jws.* \
ihse@839 61 javax.lang.* \
ihse@839 62 javax.management.* \
ihse@839 63 javax.script \
ihse@839 64 javax.sql.* \
ihse@839 65 javax.tools.* \
ihse@839 66 javax.xml.* \
ihse@839 67 org.w3c.* \
ihse@839 68 org.xml.sax
ohair@478 69
ohair@478 70 #
ohair@478 71 # CORE_PKGS is the list of packages that form the
ohair@478 72 # Java API Specification.
ohair@478 73 #
ohair@478 74 ### ***IMPORTANT NOTE***
ohair@478 75 ### There is also a "REGEXP" variable in the docs/makefile that
ohair@478 76 ### determines which table the packages go in on the main page.
ohair@478 77 ### Currently, there is only table ("Platform Packages") and
ohair@478 78 ### everything goes in it, so REGEXP is "*". But if that policy
ihse@839 79 ### changes, packages added will need to be reflected in that
ohair@478 80 ### list of wildcard expressions, as well.
ohair@478 81 ###
ihse@839 82 CORE_PKGS = \
ihse@839 83 java.applet \
ihse@839 84 java.awt \
ihse@839 85 java.awt.color \
ihse@839 86 java.awt.datatransfer \
ihse@839 87 java.awt.dnd \
ihse@839 88 java.awt.event \
ihse@839 89 java.awt.font \
ihse@839 90 java.awt.geom \
ihse@839 91 java.awt.im \
ihse@839 92 java.awt.im.spi \
ihse@839 93 java.awt.image \
ihse@839 94 java.awt.image.renderable \
ihse@839 95 java.awt.print \
ihse@839 96 java.beans \
ihse@839 97 java.beans.beancontext \
ihse@839 98 java.io \
ihse@839 99 java.lang \
ihse@839 100 java.lang.annotation \
ihse@839 101 java.lang.instrument \
ihse@839 102 java.lang.invoke \
ihse@839 103 java.lang.management \
ihse@839 104 java.lang.ref \
ihse@839 105 java.lang.reflect \
ihse@839 106 java.math \
ihse@839 107 java.net \
ihse@839 108 java.nio \
ihse@839 109 java.nio.channels \
ihse@839 110 java.nio.channels.spi \
ihse@839 111 java.nio.charset \
ihse@839 112 java.nio.charset.spi \
ihse@839 113 java.nio.file \
ihse@839 114 java.nio.file.attribute \
ihse@839 115 java.nio.file.spi \
ihse@839 116 java.rmi \
ihse@839 117 java.rmi.activation \
ihse@839 118 java.rmi.dgc \
ihse@839 119 java.rmi.registry \
ihse@839 120 java.rmi.server \
ihse@839 121 java.security \
ihse@839 122 java.security.acl \
ihse@839 123 java.security.cert \
ihse@839 124 java.security.interfaces \
ihse@839 125 java.security.spec \
ihse@839 126 java.sql \
ihse@839 127 java.text \
ihse@839 128 java.text.spi \
ihse@839 129 java.time \
ihse@839 130 java.time.chrono \
ihse@839 131 java.time.format \
ihse@839 132 java.time.temporal \
ihse@839 133 java.time.zone \
ihse@839 134 java.util \
ihse@839 135 java.util.concurrent \
ihse@839 136 java.util.concurrent.atomic \
ihse@839 137 java.util.concurrent.locks \
ihse@839 138 java.util.function \
ihse@839 139 java.util.jar \
ihse@839 140 java.util.logging \
ihse@839 141 java.util.prefs \
ihse@839 142 java.util.regex \
ihse@839 143 java.util.spi \
ihse@839 144 java.util.stream \
ihse@839 145 java.util.zip \
ihse@839 146 javax.accessibility \
ihse@839 147 javax.activation \
ihse@839 148 javax.activity \
ihse@839 149 javax.annotation \
ihse@839 150 javax.annotation.processing \
ihse@839 151 javax.crypto \
ihse@839 152 javax.crypto.interfaces \
ihse@839 153 javax.crypto.spec \
ihse@839 154 javax.imageio \
ihse@839 155 javax.imageio.event \
ihse@839 156 javax.imageio.metadata \
ihse@839 157 javax.imageio.plugins.jpeg \
ihse@839 158 javax.imageio.plugins.bmp \
ihse@839 159 javax.imageio.spi \
ihse@839 160 javax.imageio.stream \
ihse@839 161 javax.jws \
ihse@839 162 javax.jws.soap \
ihse@839 163 javax.lang.model \
ihse@839 164 javax.lang.model.element \
ihse@839 165 javax.lang.model.type \
ihse@839 166 javax.lang.model.util \
ihse@839 167 javax.management \
ihse@839 168 javax.management.loading \
ihse@839 169 javax.management.monitor \
ihse@839 170 javax.management.relation \
ihse@839 171 javax.management.openmbean \
ihse@839 172 javax.management.timer \
ihse@839 173 javax.management.modelmbean \
ihse@839 174 javax.management.remote \
ihse@839 175 javax.management.remote.rmi \
ihse@839 176 javax.naming \
ihse@839 177 javax.naming.directory \
ihse@839 178 javax.naming.event \
ihse@839 179 javax.naming.ldap \
ihse@839 180 javax.naming.spi \
ihse@839 181 javax.net \
ihse@839 182 javax.net.ssl \
ihse@839 183 javax.print \
ihse@839 184 javax.print.attribute \
ihse@839 185 javax.print.attribute.standard \
ihse@839 186 javax.print.event \
ihse@839 187 javax.rmi \
ihse@839 188 javax.rmi.CORBA \
ihse@839 189 javax.rmi.ssl \
ihse@839 190 javax.script \
ihse@839 191 javax.security.auth \
ihse@839 192 javax.security.auth.callback \
ihse@839 193 javax.security.auth.kerberos \
ihse@839 194 javax.security.auth.login \
ihse@839 195 javax.security.auth.spi \
ihse@839 196 javax.security.auth.x500 \
ihse@839 197 javax.security.cert \
ihse@839 198 javax.security.sasl \
ihse@839 199 javax.sound.sampled \
ihse@839 200 javax.sound.sampled.spi \
ihse@839 201 javax.sound.midi \
ihse@839 202 javax.sound.midi.spi \
ihse@839 203 javax.sql \
ihse@839 204 javax.sql.rowset \
ihse@839 205 javax.sql.rowset.serial \
ihse@839 206 javax.sql.rowset.spi \
ihse@839 207 javax.swing \
ihse@839 208 javax.swing.border \
ihse@839 209 javax.swing.colorchooser \
ihse@839 210 javax.swing.filechooser \
ihse@839 211 javax.swing.event \
ihse@839 212 javax.swing.table \
ihse@839 213 javax.swing.text \
ihse@839 214 javax.swing.text.html \
ihse@839 215 javax.swing.text.html.parser \
ihse@839 216 javax.swing.text.rtf \
ihse@839 217 javax.swing.tree \
ihse@839 218 javax.swing.undo \
ihse@839 219 javax.swing.plaf \
ihse@839 220 javax.swing.plaf.basic \
ihse@839 221 javax.swing.plaf.metal \
ihse@839 222 javax.swing.plaf.multi \
ihse@839 223 javax.swing.plaf.nimbus \
ihse@839 224 javax.swing.plaf.synth \
ihse@839 225 javax.tools \
ihse@839 226 javax.tools.annotation \
ihse@839 227 javax.transaction \
ihse@839 228 javax.transaction.xa \
ihse@839 229 javax.xml.parsers \
ihse@839 230 javax.xml.bind \
ihse@839 231 javax.xml.bind.annotation \
ihse@839 232 javax.xml.bind.annotation.adapters \
ihse@839 233 javax.xml.bind.attachment \
ihse@839 234 javax.xml.bind.helpers \
ihse@839 235 javax.xml.bind.util \
ihse@839 236 javax.xml.soap \
ihse@839 237 javax.xml.ws \
ihse@839 238 javax.xml.ws.handler \
ihse@839 239 javax.xml.ws.handler.soap \
ihse@839 240 javax.xml.ws.http \
ihse@839 241 javax.xml.ws.soap \
ihse@839 242 javax.xml.ws.spi \
ihse@839 243 javax.xml.ws.spi.http \
ihse@839 244 javax.xml.ws.wsaddressing \
ihse@839 245 javax.xml.transform \
ihse@839 246 javax.xml.transform.sax \
ihse@839 247 javax.xml.transform.dom \
ihse@839 248 javax.xml.transform.stax \
ihse@839 249 javax.xml.transform.stream \
ihse@839 250 javax.xml \
ihse@839 251 javax.xml.crypto \
ihse@839 252 javax.xml.crypto.dom \
ihse@839 253 javax.xml.crypto.dsig \
ihse@839 254 javax.xml.crypto.dsig.dom \
ihse@839 255 javax.xml.crypto.dsig.keyinfo \
ihse@839 256 javax.xml.crypto.dsig.spec \
ihse@839 257 javax.xml.datatype \
ihse@839 258 javax.xml.validation \
ihse@839 259 javax.xml.namespace \
ihse@839 260 javax.xml.xpath \
ihse@839 261 javax.xml.stream \
ihse@839 262 javax.xml.stream.events \
ihse@839 263 javax.xml.stream.util \
ihse@839 264 org.ietf.jgss \
ihse@839 265 org.omg.CORBA \
ihse@839 266 org.omg.CORBA.DynAnyPackage \
ihse@839 267 org.omg.CORBA.ORBPackage \
ihse@839 268 org.omg.CORBA.TypeCodePackage \
ihse@839 269 org.omg.stub.java.rmi \
ihse@839 270 org.omg.CORBA.portable \
ihse@839 271 org.omg.CORBA_2_3 \
ihse@839 272 org.omg.CORBA_2_3.portable \
ihse@839 273 org.omg.CosNaming \
ihse@839 274 org.omg.CosNaming.NamingContextExtPackage \
ihse@839 275 org.omg.CosNaming.NamingContextPackage \
ihse@839 276 org.omg.SendingContext \
ihse@839 277 org.omg.PortableServer \
ihse@839 278 org.omg.PortableServer.CurrentPackage \
ihse@839 279 org.omg.PortableServer.POAPackage \
ihse@839 280 org.omg.PortableServer.POAManagerPackage \
ihse@839 281 org.omg.PortableServer.ServantLocatorPackage \
ihse@839 282 org.omg.PortableServer.portable \
ihse@839 283 org.omg.PortableInterceptor \
ihse@839 284 org.omg.PortableInterceptor.ORBInitInfoPackage \
ihse@839 285 org.omg.Messaging \
ihse@839 286 org.omg.IOP \
ihse@839 287 org.omg.IOP.CodecFactoryPackage \
ihse@839 288 org.omg.IOP.CodecPackage \
ihse@839 289 org.omg.Dynamic \
ihse@839 290 org.omg.DynamicAny \
ihse@839 291 org.omg.DynamicAny.DynAnyPackage \
ihse@839 292 org.omg.DynamicAny.DynAnyFactoryPackage \
ihse@839 293 org.w3c.dom \
ihse@839 294 org.w3c.dom.events \
ihse@839 295 org.w3c.dom.bootstrap \
ihse@839 296 org.w3c.dom.ls \
katleman@841 297 org.w3c.dom.views \
ihse@839 298 org.xml.sax \
ihse@839 299 org.xml.sax.ext \
ihse@839 300 org.xml.sax.helpers

mercurial