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