1 #
2 # Copyright (c) 2014, 2022, Oracle and/or its affiliates. All rights reserved.
3 # 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
7 # published by the Free Software Foundation. Oracle designates this
8 # particular file as subject to the "Classpath" exception as provided
9 # by Oracle in the LICENSE file that accompanied this code.
10 #
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 #
21 # 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.
24 #
25
26 ################################################################################
27 # Module sets needed to build docs.
28 #
29 # DOCS_MODULES defines the root modules for javadoc generation.
30 # All of their `require transitive` modules directly and indirectly will be included.
31 DOCS_MODULES= \
32 java.se \
33 java.smartcardio \
34 jdk.accessibility \
35 jdk.attach \
36 jdk.charsets \
37 jdk.compiler \
38 jdk.crypto.cryptoki \
39 jdk.crypto.ec \
40 jdk.dynalink \
41 jdk.editpad \
42 jdk.hotspot.agent \
43 jdk.httpserver \
44 jdk.jpackage \
45 jdk.incubator.vector \
46 jdk.jartool \
47 jdk.javadoc \
48 jdk.jcmd \
49 jdk.jconsole \
50 jdk.jdeps \
51 jdk.jdi \
52 jdk.jdwp.agent \
53 jdk.jfr \
54 jdk.jlink \
55 jdk.jsobject \
56 jdk.jshell \
57 jdk.jstatd \
58 jdk.incubator.jextract \
59 jdk.localedata \
60 jdk.management \
61 jdk.management.agent \
62 jdk.management.jfr \
63 jdk.naming.dns \
64 jdk.naming.rmi \
65 jdk.net \
66 jdk.nio.mapmode \
67 jdk.sctp \
68 jdk.security.auth \
69 jdk.security.jgss \
70 jdk.xml.dom \
71 jdk.zipfs \
72 #
--- EOF ---