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 classname or wildcard.  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.package=\
  20 \  -v:package               Print package-level dependencies
  21 
  22 main.opt.v.class=\
  23 \  -v:class                 Print class-level dependencies
  24 
  25 main.opt.v=\
  26 \  -v  --verbose            Print additional information
  27 
  28 main.opt.s=\
  29 \  -s  --summary            Print dependency summary only
  30 
  31 main.opt.p=\
  32 \  -p <package name>        Restrict analysis to classes in this package\n\
  33 \                           (may be given multiple times)
  34 
  35 main.opt.e=\
  36 \  -e <regex>               Restrict analysis to packages matching pattern\n\
  37 \                           (-p and -e are exclusive)
  38 
  39 main.opt.P=\
  40 \  -P  --profile            Show profile or the file containing a package
  41 
  42 main.opt.classpath=\
  43 \  -classpath <path>        Specify where to find class files
  44 
  45 main.opt.R=\
  46 \  -R  --recursive          Traverse all dependencies recursively
  47 
  48 main.opt.d=\
  49 \  -d <depth>               Specify the depth of the transitive dependency analysis\n\
  50 \                           -r option is equivalent to setting depth to 0.
  51 
  52 err.unknown.option=unknown option: {0}
  53 err.missing.arg=no value given for {0}
  54 err.internal.error=internal error: {0} {1} {2}
  55 err.invalid.arg.for.option=invalid argument for option: {0}
  56 warn.invalid.arg=Invalid classname or pathname not exist: {0}
  57 warn.split.package=package {0} defined in {1} {2}