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