author | reinhapa |
Wed, 16 Nov 2016 13:47:25 -0800 | |
changeset 42262 | 251bfd8289ee |
parent 41997 | 79da2a8f4274 |
child 42408 | d6f09ae68eab |
permissions | -rw-r--r-- |
15030
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
1 |
main.usage.summary=\ |
38524 | 2 |
Usage: {0} <options> <path ...>]\n\ |
40308
274367a99f98
8136930: Simplify use of module-system options by custom launchers
jjg
parents:
38525
diff
changeset
|
3 |
use -h, -?, -help, or --help for a list of possible options |
15030
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
4 |
|
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
5 |
main.usage=\ |
38524 | 6 |
Usage: {0} <options> <path ...>]\n\ |
7 |
<path> can be a pathname to a .class file, a directory, a JAR file.\n\ |
|
36526 | 8 |
\n\ |
9 |
Possible options include: |
|
15030
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
10 |
|
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
11 |
error.prefix=Error: |
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
12 |
warn.prefix=Warning: |
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
13 |
|
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
14 |
main.opt.h=\ |
40308
274367a99f98
8136930: Simplify use of module-system options by custom launchers
jjg
parents:
38525
diff
changeset
|
15 |
\ -h -? -help\n\ |
41251
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
16 |
\ --help Print this usage message |
15030
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
17 |
|
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
18 |
main.opt.version=\ |
41251
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
19 |
\ -version --version Version information |
15030
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
20 |
|
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
21 |
main.opt.v=\ |
41251
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
22 |
\ -v -verbose Print all class level dependences\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
23 |
\ Equivalent to -verbose:class -filter:none.\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
24 |
\ -verbose:package Print package-level dependences excluding\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
25 |
\ dependences within the same package by default\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
26 |
\ -verbose:class Print class-level dependences excluding\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
27 |
\ dependences within the same package by default |
15030
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
28 |
|
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
29 |
main.opt.s=\ |
41251
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
30 |
\ -s -summary Print dependency summary only. |
15030
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
31 |
|
38524 | 32 |
main.opt.f=\ |
41251
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
33 |
\ -f <regex> -filter <regex> Filter dependences matching the given\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
34 |
\ pattern. If given multiple times, the last\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
35 |
\ one will be used.\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
36 |
\ -filter:package Filter dependences within the same package.\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
37 |
\ This is the default.\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
38 |
\ -filter:archive Filter dependences within the same archive.\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
39 |
\ -filter:module Filter dependences within the same module.\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
40 |
\ -filter:none No -filter:package and -filter:archive\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
41 |
\ filtering. Filtering specified via the\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
42 |
\ -filter option still applies.\n\ |
38524 | 43 |
|
44 |
main.opt.p=\n\ |
|
41251
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
45 |
\Options to filter dependences:\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
46 |
\ -p <pkg>\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
47 |
\ -package <pkg>\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
48 |
\ --package <pkg> Finds dependences matching the given package\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
49 |
\ name (may be given multiple times). |
15030
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
50 |
|
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
51 |
main.opt.e=\ |
41251
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
52 |
\ -e <regex>\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
53 |
\ -regex <regex>\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
54 |
\ --regex <regex> Finds dependences matching the given pattern. |
36526 | 55 |
|
41251
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
56 |
main.opt.require=\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
57 |
\ --require <module-name> Finds dependences matching the given module\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
58 |
\ name (may be given multiple times). --package,\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
59 |
\ --regex, --require are mutual exclusive. |
21046
ebf16a1a6328
8015912: jdeps support to output in dot file format
mchung
parents:
16550
diff
changeset
|
60 |
|
38524 | 61 |
main.opt.include=\n\ |
62 |
\Options to filter classes to be analyzed:\n\ |
|
41251
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
63 |
\ -include <regex> Restrict analysis to classes matching pattern\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
64 |
\ This option filters the list of classes to\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
65 |
\ be analyzed. It can be used together with\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
66 |
\ -p and -e which apply pattern to the dependences |
15030
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
67 |
|
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
68 |
main.opt.P=\ |
41251
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
69 |
\ -P -profile Show profile containing a package |
25874 | 70 |
|
21046
ebf16a1a6328
8015912: jdeps support to output in dot file format
mchung
parents:
16550
diff
changeset
|
71 |
main.opt.cp=\ |
40308
274367a99f98
8136930: Simplify use of module-system options by custom launchers
jjg
parents:
38525
diff
changeset
|
72 |
\ -cp <path>\n\ |
274367a99f98
8136930: Simplify use of module-system options by custom launchers
jjg
parents:
38525
diff
changeset
|
73 |
\ -classpath <path>\n\ |
41251
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
74 |
\ --class-path <path> Specify where to find class files |
36526 | 75 |
|
40308
274367a99f98
8136930: Simplify use of module-system options by custom launchers
jjg
parents:
38525
diff
changeset
|
76 |
main.opt.module-path=\ |
41251
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
77 |
\ --module-path <module path> Specify module path |
36526 | 78 |
|
40308
274367a99f98
8136930: Simplify use of module-system options by custom launchers
jjg
parents:
38525
diff
changeset
|
79 |
main.opt.upgrade-module-path=\ |
41251
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
80 |
\ --upgrade-module-path <module path> Specify upgrade module path |
36526 | 81 |
|
38525
a2169f8fa712
8156575: Add jdeps -addmods, -system, -inverse options
mchung
parents:
38524
diff
changeset
|
82 |
main.opt.system=\ |
41251
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
83 |
\ --system <java-home> Specify an alternate system module path |
38525
a2169f8fa712
8156575: Add jdeps -addmods, -system, -inverse options
mchung
parents:
38524
diff
changeset
|
84 |
|
40308
274367a99f98
8136930: Simplify use of module-system options by custom launchers
jjg
parents:
38525
diff
changeset
|
85 |
main.opt.add-modules=\ |
274367a99f98
8136930: Simplify use of module-system options by custom launchers
jjg
parents:
38525
diff
changeset
|
86 |
\ --add-modules <module-name>[,<module-name>...]\n\ |
41251
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
87 |
\ Adds modules to the root set for analysis |
38525
a2169f8fa712
8156575: Add jdeps -addmods, -system, -inverse options
mchung
parents:
38524
diff
changeset
|
88 |
|
36526 | 89 |
main.opt.m=\ |
40308
274367a99f98
8136930: Simplify use of module-system options by custom launchers
jjg
parents:
38525
diff
changeset
|
90 |
\ -m <module-name>\n\ |
41251
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
91 |
\ --module <module-name> Specify the root module for analysis |
15030
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
92 |
|
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
93 |
main.opt.R=\ |
41251
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
94 |
\ -R -recursive Recursively traverse all run-time dependences.\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
95 |
\ The -R option implies -filter:none. If -p,\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
96 |
\ -e, -foption is specified, only the matching\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
97 |
\ dependences are analyzed. |
36526 | 98 |
|
38525
a2169f8fa712
8156575: Add jdeps -addmods, -system, -inverse options
mchung
parents:
38524
diff
changeset
|
99 |
main.opt.I=\ |
41251
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
100 |
\ -I --inverse Analyzes the dependences per other given options\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
101 |
\ and then find all artifacts that directly\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
102 |
\ and indirectly depend on the matching nodes.\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
103 |
\ This is equivalent to the inverse of\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
104 |
\ compile-time view analysis and print\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
105 |
\ dependency summary. This option must use\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
106 |
\ with --require, --package or --regex option. |
38525
a2169f8fa712
8156575: Add jdeps -addmods, -system, -inverse options
mchung
parents:
38524
diff
changeset
|
107 |
|
40308
274367a99f98
8136930: Simplify use of module-system options by custom launchers
jjg
parents:
38525
diff
changeset
|
108 |
main.opt.compile-time=\ |
41251
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
109 |
\ --compile-time Compile-time view of transitive dependences\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
110 |
\ i.e. compile-time view of -R option.\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
111 |
\ Analyzes the dependences per other given options\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
112 |
\ If a dependence is found from a directory,\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
113 |
\ a JAR file or a module, all classes in that \n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
114 |
\ containing archive are analyzed. |
15030
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
115 |
|
21046
ebf16a1a6328
8015912: jdeps support to output in dot file format
mchung
parents:
16550
diff
changeset
|
116 |
main.opt.apionly=\ |
41251
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
117 |
\ -apionly\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
118 |
\ --api-only Restrict analysis to APIs i.e. dependences\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
119 |
\ from the signature of public and protected\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
120 |
\ members of public classes including field\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
121 |
\ type, method parameter types, returned type,\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
122 |
\ checked exception types etc. |
36526 | 123 |
|
41251
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
124 |
main.opt.generate-module-info=\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
125 |
\ --generate-module-info <dir> Generate module-info.java under the specified\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
126 |
\ directory. The specified JAR files will be\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
127 |
\ analyzed. This option cannot be used with\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
128 |
\ --dot-output or --class-path. |
36526 | 129 |
|
130 |
main.opt.check=\ |
|
40308
274367a99f98
8136930: Simplify use of module-system options by custom launchers
jjg
parents:
38525
diff
changeset
|
131 |
\ --check <module-name>[,<module-name>...\n\ |
41251
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
132 |
\ Analyze the dependence of the specified modules\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
133 |
\ It prints the module descriptor, the resulting\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
134 |
\ module dependences after analysis and the\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
135 |
\ graph after transition reduction. It also\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
136 |
\ identifies any unused qualified exports. |
36526 | 137 |
|
21046
ebf16a1a6328
8015912: jdeps support to output in dot file format
mchung
parents:
16550
diff
changeset
|
138 |
|
ebf16a1a6328
8015912: jdeps support to output in dot file format
mchung
parents:
16550
diff
changeset
|
139 |
main.opt.dotoutput=\ |
41251
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
140 |
\ -dotoutput <dir>\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
141 |
\ --dot-output <dir> Destination directory for DOT file output |
21046
ebf16a1a6328
8015912: jdeps support to output in dot file format
mchung
parents:
16550
diff
changeset
|
142 |
|
22007
907f7054db16
8029216: (jdeps) Provide a specific option to report JDK internal APIs
mchung
parents:
21046
diff
changeset
|
143 |
main.opt.jdkinternals=\ |
41251
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
144 |
\ -jdkinternals\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
145 |
\ --jdk-internals Finds class-level dependences on JDK internal\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
146 |
\ APIs. By default, it analyzes all classes\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
147 |
\ on --class-path and input files unless -include\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
148 |
\ option is specified. This option cannot be\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
149 |
\ used with -p, -e and -s options.\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
150 |
\ WARNING: JDK internal APIs are inaccessible. |
22007
907f7054db16
8029216: (jdeps) Provide a specific option to report JDK internal APIs
mchung
parents:
21046
diff
changeset
|
151 |
|
41860
906670ff49c7
8167057: jdeps option to list modules and internal APIs for @modules for test dev
mchung
parents:
41443
diff
changeset
|
152 |
main.opt.list-deps=\ |
906670ff49c7
8167057: jdeps option to list modules and internal APIs for @modules for test dev
mchung
parents:
41443
diff
changeset
|
153 |
\ --list-deps Lists the dependences and use of JDK internal\n\ |
41997 | 154 |
\ APIs. |
155 |
||
156 |
main.opt.list-reduced-deps=\ |
|
41860
906670ff49c7
8167057: jdeps option to list modules and internal APIs for @modules for test dev
mchung
parents:
41443
diff
changeset
|
157 |
\ --list-reduced-deps Same as --list-deps with not listing\n\ |
906670ff49c7
8167057: jdeps option to list modules and internal APIs for @modules for test dev
mchung
parents:
41443
diff
changeset
|
158 |
\ the implied reads edges from the module graph\n\ |
906670ff49c7
8167057: jdeps option to list modules and internal APIs for @modules for test dev
mchung
parents:
41443
diff
changeset
|
159 |
\ If module M1 depends on M2 and M3,\n\ |
906670ff49c7
8167057: jdeps option to list modules and internal APIs for @modules for test dev
mchung
parents:
41443
diff
changeset
|
160 |
\ M2 requires public on M3, then M1 reading M3 is\n\ |
906670ff49c7
8167057: jdeps option to list modules and internal APIs for @modules for test dev
mchung
parents:
41443
diff
changeset
|
161 |
\ implied and removed from the module graph. |
906670ff49c7
8167057: jdeps option to list modules and internal APIs for @modules for test dev
mchung
parents:
41443
diff
changeset
|
162 |
|
21046
ebf16a1a6328
8015912: jdeps support to output in dot file format
mchung
parents:
16550
diff
changeset
|
163 |
main.opt.depth=\ |
41251
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
164 |
\ -depth=<depth> Specify the depth of the transitive\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
165 |
\ dependency analysis |
15030
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
166 |
|
36526 | 167 |
main.opt.q=\ |
41251
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
168 |
\ -q -quiet Do not show missing dependences from \n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
169 |
\ --generate-module-info output. |
22007
907f7054db16
8029216: (jdeps) Provide a specific option to report JDK internal APIs
mchung
parents:
21046
diff
changeset
|
170 |
|
41164
69167c89e68f
8153654: Update jdeps to be multi-release jar aware
sdrach
parents:
40308
diff
changeset
|
171 |
main.opt.multi-release=\ |
41251
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
172 |
\ --multi-release <version> Specifies the version when processing\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
173 |
\ multi-release jar files. <version> should\n\ |
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
174 |
\ be integer >= 9 or base. |
41164
69167c89e68f
8153654: Update jdeps to be multi-release jar aware
sdrach
parents:
40308
diff
changeset
|
175 |
|
41997 | 176 |
err.command.set={0} and {1} options are specified. |
15030
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
177 |
err.unknown.option=unknown option: {0} |
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
178 |
err.missing.arg=no value given for {0} |
42262
251bfd8289ee
8169659: (jdeps) missing messages for localization
reinhapa
parents:
41997
diff
changeset
|
179 |
err.missing.dependences=missing dependencies |
15030
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
180 |
err.invalid.arg.for.option=invalid argument for option: {0} |
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
181 |
err.option.after.class=option must be specified before classes: {0} |
41442
14db641d4a9f
8166846: jdeps fails to generate module info if there is any class in unnamed package
mchung
parents:
41251
diff
changeset
|
182 |
err.genmoduleinfo.not.jarfile={0} is a modular JAR file that cannot be specified with the --generate-module-info option |
14db641d4a9f
8166846: jdeps fails to generate module info if there is any class in unnamed package
mchung
parents:
41251
diff
changeset
|
183 |
err.genmoduleinfo.unnamed.package={0} contains an unnamed package that is not allowed in a module |
16550
f20e2521f3df
8005428: Update jdeps to read the same profile information as by javac
mchung
parents:
15030
diff
changeset
|
184 |
err.profiles.msg=No profile information |
36526 | 185 |
err.exception.message={0} |
25442
755ff386d1ac
8029548: (jdeps) use @jdk.Exported to determine supported vs JDK internal API
mchung
parents:
22007
diff
changeset
|
186 |
err.invalid.path=invalid path: {0} |
41997 | 187 |
err.invalid.options={0} cannot be used with {1} option |
36526 | 188 |
err.module.not.found=module not found: {0} |
38524 | 189 |
err.root.module.not.set=root module set empty |
41997 | 190 |
err.filter.not.specified=--package (-p), --regex (-e), --require option must be specified |
41164
69167c89e68f
8153654: Update jdeps to be multi-release jar aware
sdrach
parents:
40308
diff
changeset
|
191 |
err.multirelease.option.exists={0} is not a multi-release jar file, but the --multi-release option is set |
69167c89e68f
8153654: Update jdeps to be multi-release jar aware
sdrach
parents:
40308
diff
changeset
|
192 |
err.multirelease.option.notfound={0} is a multi-release jar file, but the --multi-release option is not set |
69167c89e68f
8153654: Update jdeps to be multi-release jar aware
sdrach
parents:
40308
diff
changeset
|
193 |
err.multirelease.version.associated=class {0} already associated with version {1}, trying to add version {2} |
69167c89e68f
8153654: Update jdeps to be multi-release jar aware
sdrach
parents:
40308
diff
changeset
|
194 |
err.multirelease.jar.malformed=malformed multi-release jar, {0}, bad entry: {1} |
69167c89e68f
8153654: Update jdeps to be multi-release jar aware
sdrach
parents:
40308
diff
changeset
|
195 |
warn.invalid.arg=Path does not exist: {0} |
41443
6398801363f2
8167014: jdeps: Missing message: warn.skipped.entry
mchung
parents:
41442
diff
changeset
|
196 |
warn.skipped.entry={0} |
15030
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
197 |
warn.split.package=package {0} defined in {1} {2} |
25692
39537fdca12c
8050804: (jdeps) Recommend supported API to replace use of JDK internal API
mchung
parents:
25442
diff
changeset
|
198 |
warn.replace.useJDKInternals=\ |
39537fdca12c
8050804: (jdeps) Recommend supported API to replace use of JDK internal API
mchung
parents:
25442
diff
changeset
|
199 |
JDK internal APIs are unsupported and private to JDK implementation that are\n\ |
39537fdca12c
8050804: (jdeps) Recommend supported API to replace use of JDK internal API
mchung
parents:
25442
diff
changeset
|
200 |
subject to be removed or changed incompatibly and could break your application.\n\ |
41251
6112540cd0c1
8166238: Update jdeps for GNU-style long form options
mchung
parents:
41164
diff
changeset
|
201 |
Please modify your code to eliminate dependence on any JDK internal APIs.\n\ |
25692
39537fdca12c
8050804: (jdeps) Recommend supported API to replace use of JDK internal API
mchung
parents:
25442
diff
changeset
|
202 |
For the most recent update on JDK internal API replacements, please check:\n\ |
39537fdca12c
8050804: (jdeps) Recommend supported API to replace use of JDK internal API
mchung
parents:
25442
diff
changeset
|
203 |
{0} |
15030
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
204 |
|
42262
251bfd8289ee
8169659: (jdeps) missing messages for localization
reinhapa
parents:
41997
diff
changeset
|
205 |
split.package=split package: {0} {1}\n |
251bfd8289ee
8169659: (jdeps) missing messages for localization
reinhapa
parents:
41997
diff
changeset
|
206 |
inverse.transitive.dependencies.on=Inverse transitive dependences on {0} |
251bfd8289ee
8169659: (jdeps) missing messages for localization
reinhapa
parents:
41997
diff
changeset
|
207 |
inverse.transitive.dependencies.matching=Inverse transitive dependences matching {0} |
251bfd8289ee
8169659: (jdeps) missing messages for localization
reinhapa
parents:
41997
diff
changeset
|
208 |
internal.api.column.header=JDK Internal API |
251bfd8289ee
8169659: (jdeps) missing messages for localization
reinhapa
parents:
41997
diff
changeset
|
209 |
public.api.replacement.column.header=Suggested Replacement |
15030
2d8dec41f029
8003562: Provide a CLI tool to analyze class dependencies
mchung
parents:
diff
changeset
|
210 |
artifact.not.found=not found |
25692
39537fdca12c
8050804: (jdeps) Recommend supported API to replace use of JDK internal API
mchung
parents:
25442
diff
changeset
|
211 |
jdeps.wiki.url=https://wiki.openjdk.java.net/display/JDK8/Java+Dependency+Analysis+Tool |