jdeps.properties revision 3294:9adfb22ff08f
1main.usage.summary=\
2Usage: {0} <options> [-m <module-name> | <classes...>]\n\
3use -h, -? or -help for a list of possible options
4
5main.usage=\
6Usage: {0} <options> [-m <module-name> | <classes...>]\n\
7If -m <module-name> is specified, the specified module will be analyzed\n\
8otherwise, <classes> can be a pathname to a .class file, a directory,\n\
9a JAR file, or a fully-qualified class name.\n\
10\n\
11Possible options include:
12
13error.prefix=Error:
14warn.prefix=Warning:
15
16main.opt.h=\
17\  -h -?        -help                   Print this usage message
18
19main.opt.version=\
20\  -version                             Version information
21
22main.opt.v=\
23\  -v           -verbose                Print all class level dependencies\n\
24\                                       Equivalent to -verbose:class -filter:none.\n\
25\  -verbose:package                     Print package-level dependencies excluding\n\
26\                                       dependencies within the same package by default\n\
27\  -verbose:class                       Print class-level dependencies excluding\n\
28\                                       dependencies within the same package by default
29
30main.opt.f=\
31\  -f <regex>  -filter <regex>          Filter dependences matching the given pattern\n\
32\                                       If given multiple times, the last one will be used.\n\
33\  -filter:package                      Filter dependences within the same package (default)\n\
34\  -filter:module                       Filter dependences within the same module\n\
35\  -filter:archive                      Filter dependences within the same archive\n\
36\  -filter:none                         No -filter:package and -filter:archive filtering\n\
37\                                       Filtering specified via the -filter option still applies.
38
39main.opt.s=\
40\  -s           -summary                Print dependency summary only.\n\
41\                                       If -s option is used with -m, the module descriptor of\n\
42\                                       the given module will be read to generate the graph.
43
44main.opt.p=\
45\  -p <pkgname>                         Finds dependences matching the given package name\n\
46\  -package <pkgname>                   (may be given multiple times).
47
48main.opt.e=\
49\  -e <regex>\n\
50\  -regex <regex>                       Finds dependences matching the given pattern.
51
52main.opt.module=\
53\  -module <module-name>                Finds dependences matching the given module name\n\
54\                                       (may be given multiple times).\n\
55\                                       -package, -regex, -requires are mutual exclusive.
56
57main.opt.include=\
58\  -include <regex>                     Restrict analysis to classes matching pattern\n\
59\                                       This option filters the list of classes to\n\
60\                                       be analyzed.  It can be used together with\n\
61\                                       -p and -e which apply pattern to the dependences
62
63main.opt.P=\
64\  -P           -profile                Show profile containing a package
65
66main.opt.M=\
67\  -M                                   Show module containing a package
68
69main.opt.cp=\
70\  -cp <path>   -classpath <path>       Specify where to find class files
71
72main.opt.mp=\
73\  -mp <module path>...\n\
74\  -modulepath <module path>...         Specify module path
75
76main.opt.upgrademodulepath=\
77\  -upgrademodulepath <module path>...  Specify upgrade module path
78
79main.opt.m=\
80\  -m <module-name>                     Specify the name of the module and its transitive\n\
81\                                       dependences to be analyzed.
82
83main.opt.R=\
84\  -R           -recursive              Recursively traverse all run-time dependencies.\n\
85\                                       The -R option implies -filter:none.  If -p, -e, -f\n\
86\                                       option is specified, only the matching dependences\n\
87\                                       are analyzed.
88
89main.opt.ct=\
90\  -ct          -compile-time           Compile-time view of transitive dependencies\n\
91\                                       i.e. compile-time view of -R option.  If a dependence\n\
92\                                       is found from a directory, a JAR file or a module,\n\
93\                                       all class files in that containing archive are analyzed.
94
95main.opt.apionly=\
96\  -apionly                             Restrict analysis to APIs i.e. dependences\n\
97\                                       from the signature of public and protected\n\
98\                                       members of public classes including field\n\
99\                                       type, method parameter types, returned type,\n\
100\                                       checked exception types etc
101
102main.opt.genmoduleinfo=\
103\  -genmoduleinfo <dir>                 Generate module-info.java under the specified directory.\n\
104\                                       The specified JAR files will be analyzed.\n\
105\                                       This option cannot be used with -dotoutput or -cp.
106
107main.opt.check=\
108\  -check                               Analyze the dependence of a given module specified via\n\
109\                                       -m option.  It prints out the resulting module dependency\n\
110\                                       graph after transition reduction and also identifies any\n\
111\                                       unused qualified exports.
112
113
114main.opt.dotoutput=\
115\  -dotoutput <dir>                     Destination directory for DOT file output
116
117main.opt.jdkinternals=\
118\  -jdkinternals                        Finds class-level dependences on JDK internal APIs.\n\
119\                                       By default, it analyzes all classes on -classpath\n\
120\                                       and input files unless -include option is specified.\n\
121\                                       This option cannot be used with -p, -e and -s options.\n\
122\                                       WARNING: JDK internal APIs may not be accessible in\n\
123\                                       the next release.
124
125main.opt.depth=\
126\  -depth=<depth>                       Specify the depth of the transitive\n\
127\                                       dependency analysis
128
129main.opt.q=\
130\  -q           -quiet                  Do not show missing dependencies from -genmoduleinfo output.
131
132err.unknown.option=unknown option: {0}
133err.missing.arg=no value given for {0}
134err.invalid.arg.for.option=invalid argument for option: {0}
135err.option.after.class=option must be specified before classes: {0}
136err.genmoduleinfo.not.jarfile={0} not valid for -genmoduleinfo option (must be JAR file)
137err.profiles.msg=No profile information
138err.exception.message={0}
139err.invalid.path=invalid path: {0}
140err.invalid.module.option=-m {0} is set but {1} is specified.
141err.invalid.filters=Only one of -package (-p), -regex (-e), -requires option can be set
142err.module.not.found=module not found: {0}
143err.root.module.not.set=-m is not set
144warn.invalid.arg=Invalid classname or pathname not exist: {0}
145warn.split.package=package {0} defined in {1} {2}
146warn.replace.useJDKInternals=\
147JDK internal APIs are unsupported and private to JDK implementation that are\n\
148subject to be removed or changed incompatibly and could break your application.\n\
149Please modify your code to eliminate dependency on any JDK internal APIs.\n\
150For the most recent update on JDK internal API replacements, please check:\n\
151{0}
152
153artifact.not.found=not found
154jdeps.wiki.url=https://wiki.openjdk.java.net/display/JDK8/Java+Dependency+Analysis+Tool
155