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