1 main.usage.summary=\
   2 Usage: {0} <options> <classes...>\n\
   3 use -h, -? or -help for a list of possible options
   4 
   5 main.usage=\
   6 Usage: {0} <options> <classes...>\n\
   7 where <classes> can be a pathname to a .class file, a directory, a JAR file,\n\
   8 or a fully-qualified class name.  Possible options include:
   9 
  10 error.prefix=Error:
  11 warn.prefix=Warning:
  12 
  13 main.opt.h=\
  14 \  -h -?        -help                 Print this usage message
  15 
  16 main.opt.version=\
  17 \  -version                           Version information
  18 
  19 main.opt.v=\
  20 \  -v           -verbose              Print all class level dependencies\n\
  21 \                                     Equivalent to -verbose:class -filter:none.\n\
  22 \  -verbose:package                   Print package-level dependencies excluding\n\
  23 \                                     dependencies within the same package by default\n\
  24 \  -verbose:class                     Print class-level dependencies excluding\n\
  25 \                                     dependencies within the same package by default
  26 
  27 main.opt.f=\
  28 \  -f <regex>   -filter <regex>       Filter dependences matching the given pattern\n\
  29 \                                     If given multiple times, the last one will be used.\n\
  30 \  -filter:package                    Filter dependences within the same package (default)\n\
  31 \  -filter:archive                    Filter dependences within the same archive\n\
  32 \  -filter:none                       No -filter:package and -filter:archive filtering\n\
  33 \                                     Filtering specified via the -filter option still applies.
  34 
  35 main.opt.s=\
  36 \  -s           -summary              Print dependency summary only
  37 
  38 main.opt.p=\
  39 \  -p <pkgname> -package <pkgname>    Finds dependences matching the given package name\n\
  40 \                                     (may be given multiple times)
  41 
  42 main.opt.e=\
  43 \  -e <regex>   -regex <regex>        Finds dependences matching the given pattern\n\
  44 \                                     (-p and -e are exclusive)
  45 
  46 main.opt.include=\
  47 \  -include <regex>                   Restrict analysis to classes matching pattern\n\
  48 \                                     This option filters the list of classes to\n\
  49 \                                     be analyzed.  It can be used together with\n\
  50 \                                     -p and -e which apply pattern to the dependences
  51 
  52 main.opt.P=\
  53 \  -P           -profile              Show profile or the file containing a package
  54 
  55 main.opt.cp=\
  56 \  -cp <path>   -classpath <path>     Specify where to find class files
  57 
  58 main.opt.R=\
  59 \  -R           -recursive            Recursively traverse all dependencies.\n\
  60 \                                     The -R option implies -filter:none.  If -p, -e, -f\n\
  61 \                                     option is specified, only the matching dependences\n\
  62 \                                     are analyzed.
  63 
  64 main.opt.apionly=\
  65 \  -apionly                           Restrict analysis to APIs i.e. dependences\n\
  66 \                                     from the signature of public and protected\n\
  67 \                                     members of public classes including field\n\
  68 \                                     type, method parameter types, returned type,\n\
  69 \                                     checked exception types etc
  70 
  71 main.opt.dotoutput=\
  72 \  -dotoutput <dir>                   Destination directory for DOT file output
  73 
  74 main.opt.jdkinternals=\
  75 \  -jdkinternals                      Finds class-level dependences on JDK internal APIs.\n\
  76 \                                     By default, it analyzes all classes on -classpath\n\
  77 \                                     and input files unless -include option is specified.\n\
  78 \                                     This option cannot be used with -p, -e and -s options.\n\
  79 \                                     WARNING: JDK internal APIs may not be accessible in\n\
  80 \                                     the next release.
  81 
  82 main.opt.depth=\
  83 \  -depth=<depth>                     Specify the depth of the transitive\n\
  84 \                                     dependency analysis
  85 
  86 
  87 err.unknown.option=unknown option: {0}
  88 err.missing.arg=no value given for {0}
  89 err.invalid.arg.for.option=invalid argument for option: {0}
  90 err.option.after.class=option must be specified before classes: {0}
  91 err.option.unsupported={0} not supported: {1}
  92 err.profiles.msg=No profile information
  93 err.invalid.path=invalid path: {0}
  94 warn.invalid.arg=Invalid classname or pathname not exist: {0}
  95 warn.split.package=package {0} defined in {1} {2}
  96 warn.replace.useJDKInternals=\
  97 JDK internal APIs are unsupported and private to JDK implementation that are\n\
  98 subject to be removed or changed incompatibly and could break your application.\n\
  99 For the most recent update on the replacement for JDK internal API replacements,\n\
 100 please check: {0}
 101 
 102 artifact.not.found=not found
 103 jdeps.wiki.url=https://wiki.openjdk.java.net/display/JDK8/Java+Dependency+Analysis+Tool