You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2015/06/14 12:12:53 UTC

svn commit: r9362 - in /dev/commons/cli: ./ binaries/ source/

Author: britter
Date: Sun Jun 14 10:12:53 2015
New Revision: 9362

Log:
Apache Commons CLI 1.3.1 RC1

Added:
    dev/commons/cli/RELEASE-NOTES.txt   (with props)
    dev/commons/cli/binaries/commons-cli-1.3.1-bin.tar.gz   (with props)
    dev/commons/cli/binaries/commons-cli-1.3.1-bin.tar.gz.asc
    dev/commons/cli/binaries/commons-cli-1.3.1-bin.tar.gz.md5
    dev/commons/cli/binaries/commons-cli-1.3.1-bin.tar.gz.sha1
    dev/commons/cli/binaries/commons-cli-1.3.1-bin.zip   (with props)
    dev/commons/cli/binaries/commons-cli-1.3.1-bin.zip.asc
    dev/commons/cli/binaries/commons-cli-1.3.1-bin.zip.md5
    dev/commons/cli/binaries/commons-cli-1.3.1-bin.zip.sha1
    dev/commons/cli/source/commons-cli-1.3.1-src.tar.gz   (with props)
    dev/commons/cli/source/commons-cli-1.3.1-src.tar.gz.asc
    dev/commons/cli/source/commons-cli-1.3.1-src.tar.gz.md5
    dev/commons/cli/source/commons-cli-1.3.1-src.tar.gz.sha1
    dev/commons/cli/source/commons-cli-1.3.1-src.zip   (with props)
    dev/commons/cli/source/commons-cli-1.3.1-src.zip.asc
    dev/commons/cli/source/commons-cli-1.3.1-src.zip.md5
    dev/commons/cli/source/commons-cli-1.3.1-src.zip.sha1

Added: dev/commons/cli/RELEASE-NOTES.txt
==============================================================================
--- dev/commons/cli/RELEASE-NOTES.txt (added)
+++ dev/commons/cli/RELEASE-NOTES.txt Sun Jun 14 10:12:53 2015
@@ -0,0 +1,231 @@
+            Apache Commons CLI
+                Version 1.3.1
+               Release Notes
+
+
+INTRODUCTION:
+
+This document contains the release notes for this version of the Commons CLI
+package. Commons CLI provides a simple API for working with the command line
+arguments and options.
+
+Commons CLI 1.3.1 is a bug fix release and binary compatible with the
+previous versions, except for the OptionValidator class that is no longer public
+(change introduced in v1.2). Commons CLI 1.3.1 at least requires Java 5.0.
+
+More information can be found on the project site at 
+http://commons.apache.org/cli.
+
+BUG FIXES
+=========
+
+o CLI-252: LongOpt falsely detected as ambiguous. Thanks to Simon Harrer.
+
+
+                Release Notes for version 1.3
+
+NOTES
+=====
+
+A new parser is available: DefaultParser. It combines the features of the
+GnuParser and the PosixParser. It also provides additional features like
+partial matching for the long options, and long options without
+separator (i.e like the JVM memory settings: -Xmx512m). This new parser
+deprecates the previous ones.
+
+DEPRECATIONS
+============
+
+o org.apache.commons.cli.BasicParser 
+    replaced by org.apache.commons.cli.DefaultParser
+
+o org.apache.commons.cli.GnuParser 
+    replaced by org.apache.commons.cli.DefaultParser
+
+o org.apache.commons.cli.OptionBuilder 
+    replaced by org.apache.commons.cli.Option.builder()
+                org.apache.commons.cli.Option.builder(String)
+                org.apache.commons.cli.Option.Builder
+
+o org.apache.commons.cli.Parser 
+    replaced by org.apache.commons.cli.DefaultParser
+
+o org.apache.commons.cli.PosixParser 
+    replaced by org.apache.commons.cli.DefaultParser
+
+
+NEW FEATURES
+============
+
+o CLI-161: PosixParser doesn't stop the parsing on "--" tokens following an
+           option with an argument
+o CLI-167: Support options like Java memory settings (-Xmx512M)
+o CLI-181: Unified Parser
+o CLI-224: Added new fluent API to create Option instances via builder class
+           Option.Builder. This replaces the now deprecated OptionBuilder.
+           Thanks to Duncan Jones, Brian Blount.
+o CLI-160: PosixParser now supports partial long options (--ver instead of
+           --version). 
+o CLI-169: HelpFormatter now supports setting the displayed separator of long
+           options. Thanks to J. Lewis Muir. 
+o CLI-214: Added new method Options.addOption(String, String). Thanks to
+           Alexandru Mocanu.
+
+
+BUG FIXES
+=========
+
+o CLI-248: Dead links on doc page.
+o CLI-234: Fixed code example in javadoc of
+           "Option#Builder#valueSeparator(char)". Thanks to Greg Thomas.
+o CLI-241: Clarified behavior of "OptionValidator#validateOption(String)"
+           in case of null input. Thanks to Beluga Behr.
+o CLI-202: Default options will now work correctly with required options that
+           are missing.
+o CLI-203: Default options will now work correctly together with option groups. 
+o CLI-205: HelpFormatter.setArgName(String) now correctly sets the argument
+           name.
+o CLI-204: Passing default values for not defined options to a parser will now
+           trigger a ParseException instead of a NullPointerException.
+o CLI-201: Default properties provided as input to the Parser.parse() methods
+           are now correctly processed.
+o CLI-215: CommandLine.getParsedOptionValue() now returns a String object if no
+           option type has been explicitly set. Thanks to Manuel Müller. 
+o CLI-212: HelpFormatter now prints command-line options in the same order as
+           they have been added. Thanks to Per Cederberg.
+o CLI-186: Standard help text now shows mandatory arguments also for the first
+           option. Thanks to Kristoff Kiefer.
+o CLI-207: HelpFormatter does not strip anymore leading whitespace in the
+           footer text. Thanks to Uri Moszkowicz.
+o CLI-185: Strip quotes contained in argument values only if there is exactly
+           one at the beginning and one at the end. Thanks to
+           Einar M. R. Rosenvinge.
+o CLI-184: Negative numerical arguments take precedence over numerical options. 
+o CLI-193: Fix possible StringIndexOutOfBoundsException in HelpFormatter.
+           Thanks to Travis McLeskey.
+o CLI-183: OptionGroups no longer throw an AlreadySelectedException when reused
+           for several parsings.
+o CLI-182: OptionGroup now selects properly an option with no short name.
+
+
+CHANGES
+=======
+
+o CLI-240: Small cleanup of Option class. Thanks to Beluga Behr.
+o CLI-230: Options.getRequiredOptions() now returns an unmodifiable list. 
+o CLI-218: Clarify javadoc for CommandLine.getOptionValue() that the first
+           specified argument will be returned. Thanks to Sven. 
+o CLI-227: Changed unit tests to junit 4 annotation style. Thanks to
+           Duncan Jones. 
+o CLI-209: The javadoc of OptionBuilder now states that the class is not
+           thread-safe. Thanks to Thomas Herre. 
+o CLI-200: Fixed typo in javadoc of class CommandLine. Thanks to
+           Gerard Weatherby. 
+o CLI-223: Source code now uses generic types instead of raw types where
+           possible. Thanks to Gerard Weatherby. 
+o CLI-220  Corrected javadoc for return type of
+           MissingOptionException.getMissingOptions(). Thanks to Joe Casadonte.
+o CLI-197: Improve description of parameter "stopAtNonOption" in method
+           CommandLine.parse(Options, String[], boolean). Thanks to
+           Anders Larsson.
+o CLI-231: Removed DoubleCheckedLocking test from checkstyle configuration.
+           Thanks to Duncan Jones.
+
+
+                Release Notes for version 1.2
+
+NEW FEATURES
+============
+
+o --     : The method getOptionProperties() in the CommandLine class was added
+           to retrieve easily the key/value pairs specified with options like
+           -Dkey1=value1 -Dkey2=value2.
+o CLI-157: GnuParser now supports long options with an '=' sign 
+           (ie. --foo=bar and -foo=bar)
+o CLI-155: The ordering of options can be defined in help messages.
+
+
+BUG FIXES
+=========
+
+o CLI-137: The number of arguments defined for an option specifies the
+           arguments per occurence of the option and not for all occurences.
+o CLI-164: PosixParser no longer ignores unrecognized short options.
+o CLI-163: PosixParser no longer stops the bursting process of a token if
+           stopAtNonOption is enabled and a non option character is
+           encountered.
+o CLI-165: PosixParser no longer keeps processing the tokens after an 
+           unrecognized long option when stopAtNonOption is enabled.
+o CLI-156: Required options are properly checked if an Options instance is used
+           twice to parse a command line.
+o CLI-151: The line wrapping in HelpFormatter now works properly.
+
+
+CHANGES
+=======
+
+o CLI-149: The message of MissingOptionException has been improved.
+o CLI-86:  The exceptions have been enhanced with methods to retrieve easily
+           the related options.
+o CLI-141: Option.toString() now reports arguments properly.
+o CLI-142: The Parser class has been changed to be more easily extendable.
+o CLI-140: The following classes are now serializable: Option, OptionGroup,
+           CommandLine and Options.
+o --     : OptionValidator is no longer public, its methods were all private.
+
+
+                Release Notes for version 1.1
+
+NEW FEATURES
+============
+
+o CLI-78:  Setting description of a Option. 
+
+CHANGES
+=======
+
+o CLI-2:   Wrong usage summary. 
+o CLI-5:   Dependecy on commons-lang-2.0 but commons-lang-1.0 is obtained. 
+o CLI-8:   Line separator as first char for helpformatter (footer) throws
+           exception. 
+o CLI-13:  CommandLine.getOptionValue() behaves contrary to docs. 
+o CLI-21:  clone method in Option should use super.clone(). 
+o CLI-23:  Passing properties in Parser does not work for options with a single
+           argument. 
+o CLI-26:  Only long options without short option seems to be noticed. 
+o CLI-28:  Infinite Loop in Command-Line processing. 
+o CLI-29:  Options should not be able to be added more than once. 
+o CLI-35:  HelpFormatter doesn't sort options properly. 
+o CLI-38:  HelpFormatter doesn't function correctly for options with only
+           LongOpt. 
+o CLI-44:  Document enhancement. 
+o CLI-45:  Documentation errors. 
+o CLI-51:  Parameter value "-something" misinterpreted as a parameter. 
+o CLI-56:  clone() method doesn't fully clone contents. 
+o CLI-59:  No Javadoc for HelpFormatter!. 
+o CLI-65:  Parser breaks up command line parms into single characters. 
+o CLI-67:  Missing arguments in HelpFormatter.renderOptions(..).
+o CLI-69:  Error parsing option arguments.
+o CLI-71:  A weakness of parser.
+o CLI-129: CLI_1_BRANCH build.xml doesn't work.
+o CLI-130: Remove the Commons Lang dependency.
+o CLI-131: Options class returns options in random order.
+o CLI-132: MissingOptionException should contain a useful error message.
+o CLI-133: NullPointerException in Util.stripLeadingHyphens when passed a null
+           argument. 
+o CLI-134: 1.1 is not backwards compatible because it adds methods to the
+           CommandLineParser interface. 
+o CLI-135: Backwards compatibility between 1.1 and 1.0 broken due to
+           Option.addValue removal. 
+
+
+Historical list of changes: http://commons.apache.org/cli/changes-report.html
+
+For complete information on Commons CLI, including instructions on how to
+submit bug reports, patches, or suggestions for improvement, see the 
+Apache Commons CLI website:
+
+http://commons.apache.org/cli/
+
+Have fun!
+-Apache Commons CLI team

Propchange: dev/commons/cli/RELEASE-NOTES.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/commons/cli/binaries/commons-cli-1.3.1-bin.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/cli/binaries/commons-cli-1.3.1-bin.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/x-gzip

Added: dev/commons/cli/binaries/commons-cli-1.3.1-bin.tar.gz.asc
==============================================================================
--- dev/commons/cli/binaries/commons-cli-1.3.1-bin.tar.gz.asc (added)
+++ dev/commons/cli/binaries/commons-cli-1.3.1-bin.tar.gz.asc Sun Jun 14 10:12:53 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCgAGBQJVfVIZAAoJEJ2q3ByfzILQJkYP/0zIfh6y6y9FTbO9Cwd1b/hm
+Wc/MX3ubbSC03uQ1xpr6LLFuZKGPFjeHyDOogfOpPSJTMVLqp5DuDRxNd5GeQ49L
+oDGlFuYbfj1Rp0LXt21cUYHSMjXP+rRL870hfA9W0OeM6WiWswFes1M/cV82/nVR
+arKglVG7MNx/od0b/3k1Jwi6OevGIhEm9hK/wmlM32EXSY6lcB6RmwAIKsFPnRzv
+G8UCn8Xu1J2MAkNMMWEdNDaWiDACNRHckevbfuOnY2izy6Lt/HnKTWLTVPuSJ341
+0z+bKaH6YZVLjEe3ykyN62Es2FIox4GjsL3AucBtfnQaoLFBjav3LgEyOVBwLd1S
+mEJ7WdWo+fExF8bReG+2AxAzeLRo9fkfbGThEXTnG6FEIlq+MkTxUsXflFoKcRDP
+DIcNpq3KiFHEbZqg9YiwyoxfDbLmEc0IfQRnhx/V/kUq3pLRzEU5QFOMXRreS4HH
+sSPQi1elvJayMcoBPbVCVd/vywB23IlAfrcGrbtnly6vtP/oV3R/ADSjYxEyMHsv
+g1idEfdmqDF2RtrV8PiJpMqmyB39/tPIR0gAkkUTKSIjplp9vJjUQA1hgXM7rpJ3
+NGsH/8rqc310e7JP9W5quUvAyDDHumdLHYpCDmXmZ+uHKL402TKVI435oE7p9mLW
+aqBt9TsYDDkdZ4/xA2J9
+=LOf/
+-----END PGP SIGNATURE-----

Added: dev/commons/cli/binaries/commons-cli-1.3.1-bin.tar.gz.md5
==============================================================================
--- dev/commons/cli/binaries/commons-cli-1.3.1-bin.tar.gz.md5 (added)
+++ dev/commons/cli/binaries/commons-cli-1.3.1-bin.tar.gz.md5 Sun Jun 14 10:12:53 2015
@@ -0,0 +1 @@
+f558abaf7b192d8d3d7f81415b891684
\ No newline at end of file

Added: dev/commons/cli/binaries/commons-cli-1.3.1-bin.tar.gz.sha1
==============================================================================
--- dev/commons/cli/binaries/commons-cli-1.3.1-bin.tar.gz.sha1 (added)
+++ dev/commons/cli/binaries/commons-cli-1.3.1-bin.tar.gz.sha1 Sun Jun 14 10:12:53 2015
@@ -0,0 +1 @@
+97be5d4c0af39963ee346adfa8cf16567e561665
\ No newline at end of file

Added: dev/commons/cli/binaries/commons-cli-1.3.1-bin.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/cli/binaries/commons-cli-1.3.1-bin.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/commons/cli/binaries/commons-cli-1.3.1-bin.zip.asc
==============================================================================
--- dev/commons/cli/binaries/commons-cli-1.3.1-bin.zip.asc (added)
+++ dev/commons/cli/binaries/commons-cli-1.3.1-bin.zip.asc Sun Jun 14 10:12:53 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCgAGBQJVfVIZAAoJEJ2q3ByfzILQG38P/0VJSQICtt+dK3qZNA3+io7z
+bLby0jime8b5SL2CThYo6ZEoPSgSdhZXoqX21m01q1Uku+2QyoJbmrykxP7woVQj
+ir+tJK645TrhDo/9JYspok1hatMZT+8KhzNZ/zNFWtC3MfFl7c+QUlh/241VrWht
+IGdK8KN7XRBv+Qd/kvtWeg2xEk2t9CXCB8YkJoag/e0H9gupOsthLUdp7WlCCrS5
+PkeXHBD4K2xCtP0vF6wFyTZMkCGJcphPTdPOIv4vlVD4YtFP2WHshnQLHdP+R2Ob
+9EXor0dKlO5onXNVxCVHFc5lblI79alXMHekqRU6i1fpBy2+wtXX3xEDFIWGwGHb
+JtcrW0g2P1P9L0Nk3OoJyZU8TLmfRXYf004yMk5higHyB6Gie2GISVDQn86qiKLn
+hcwqmZisDvq+ebu2yaP8yZOjHmV1mSYloa8XpA8NydCxNc8PHFgiykdlyQsNuAje
+cE1xxdpZUQkZXM4NkNKP5h7eXpzhXCkVeN4SNm9Kbwa5+2++i5bff94RIahXLbuc
+zjKmGQcYBBsUs/vjNvAQAuVcdQAqKeFHRNoX//R+kttOP4yGSPNw8PHScJ85jwRg
+ICHwWlzJJjpTlvLUn6pByzmlslQ63vxFhiHNGBs336kqz7m2tYIRt2HOYtX5piV8
+wKqPFsqywkXRl8ULpdr+
+=IgTD
+-----END PGP SIGNATURE-----

Added: dev/commons/cli/binaries/commons-cli-1.3.1-bin.zip.md5
==============================================================================
--- dev/commons/cli/binaries/commons-cli-1.3.1-bin.zip.md5 (added)
+++ dev/commons/cli/binaries/commons-cli-1.3.1-bin.zip.md5 Sun Jun 14 10:12:53 2015
@@ -0,0 +1 @@
+96ffc624002340c5c06bd9a71b575599
\ No newline at end of file

Added: dev/commons/cli/binaries/commons-cli-1.3.1-bin.zip.sha1
==============================================================================
--- dev/commons/cli/binaries/commons-cli-1.3.1-bin.zip.sha1 (added)
+++ dev/commons/cli/binaries/commons-cli-1.3.1-bin.zip.sha1 Sun Jun 14 10:12:53 2015
@@ -0,0 +1 @@
+89368a19612e99b52b3cbccc44d584dd366fdb41
\ No newline at end of file

Added: dev/commons/cli/source/commons-cli-1.3.1-src.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/cli/source/commons-cli-1.3.1-src.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/x-gzip

Added: dev/commons/cli/source/commons-cli-1.3.1-src.tar.gz.asc
==============================================================================
--- dev/commons/cli/source/commons-cli-1.3.1-src.tar.gz.asc (added)
+++ dev/commons/cli/source/commons-cli-1.3.1-src.tar.gz.asc Sun Jun 14 10:12:53 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCgAGBQJVfVIZAAoJEJ2q3ByfzILQNJIP/0IURk6P9IIB/+vrQlOHOVUW
+IMlty2NjSos/0UOv0wfhQW4dnD/bHQ0gXFISAUNVvnJD2DS3jsL2CJLJmQvy1JW8
+oNqvRDUACXQ0G/NUh0921gRVf8cHrRZ4nTHp/5Dr2q08sDbWn/l9EtFE9wmaYkLZ
+hCHllBEfzLCyrVBsOQoMXv5/JdpnuICe21TjYeEBIsAP567mCXW2hXkbCjChOLwE
+sn7T+htRr/Ba+69iqBMqhbzIgRqNP82e7jP6B/rbh1ke682nLHSgJPcWO5ODylM2
+rNGkGz60Z8CWroDa10xFHNuM42u1LQ6lm6w1at3T8utPk4//uanngELmmT8foExi
+VvpmR4yRP0l1Cks9XOBKC43RMHrdP/zPZ1v4Up/LWCgTbVn48rjprfeKZjCMTZ0n
+g1kOrMqRCOKb9evOd3doUDGpV6E22lsZv77z1Xcdbs8RblcIlCWdaRdA9cJTq+4O
+CADZk6l0nIZgE/gD4J+LVeCxy386/IFO/raeRvX8Yqw4m/Gmuk7koDDOFDVKSucY
+T5GTAXmZ89YH6uhtnEvwGu+g/XwgPhoOOiLF7Q9n+yPsr4ZBVSAtQz8Zk40dcq9o
+/fmdAMz7cFfx5x6CADrITDASXKEEknAxZHQ1XMx5E2lDMDg5MB8DMrDhQqoFqe3/
+m6D/uPI3DF+8mO4Xh0qY
+=hNKz
+-----END PGP SIGNATURE-----

Added: dev/commons/cli/source/commons-cli-1.3.1-src.tar.gz.md5
==============================================================================
--- dev/commons/cli/source/commons-cli-1.3.1-src.tar.gz.md5 (added)
+++ dev/commons/cli/source/commons-cli-1.3.1-src.tar.gz.md5 Sun Jun 14 10:12:53 2015
@@ -0,0 +1 @@
+21d9d9117d048cee4897efe7a4a0b867
\ No newline at end of file

Added: dev/commons/cli/source/commons-cli-1.3.1-src.tar.gz.sha1
==============================================================================
--- dev/commons/cli/source/commons-cli-1.3.1-src.tar.gz.sha1 (added)
+++ dev/commons/cli/source/commons-cli-1.3.1-src.tar.gz.sha1 Sun Jun 14 10:12:53 2015
@@ -0,0 +1 @@
+ff6a3ad388e1f34ed395fe50aab5d6a940eba67e
\ No newline at end of file

Added: dev/commons/cli/source/commons-cli-1.3.1-src.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/cli/source/commons-cli-1.3.1-src.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/commons/cli/source/commons-cli-1.3.1-src.zip.asc
==============================================================================
--- dev/commons/cli/source/commons-cli-1.3.1-src.zip.asc (added)
+++ dev/commons/cli/source/commons-cli-1.3.1-src.zip.asc Sun Jun 14 10:12:53 2015
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCgAGBQJVfVIZAAoJEJ2q3ByfzILQOpEP/Amm2KVbzfiFZ2EdSby4sVZv
+O5fqTbsHRiSnCV1OsPWgrcXaMewOKE3Afau8ze4C/LRn876Ny9BxQQ3ipZqiBJxc
+uqeYaZpj7yBvsstPCZqe8QzMoSF0XlCU2ywCzFl7lDoy+t9unLLnsvWKaLNzS68m
+0LV8V7dB+uyUvhtUcz5xrZbWEk7EtL1X44hPbJbW/rCUYA7WTZAJnyYsVA+bn4Ag
+l2K1KaBzMyG/7t7DpBAi86H0f5bdf+pRjciCI+mPQpUXOjdzieUwgS4dCA/J3G3y
+1Hc1s195DaBujpB/Wpk0Se7soLQRBQs1Y0CuKA2NL4PoyzSu1aCoyS/PAJ0a3s5p
+Cel8GZpMoyRtvo2gxLJFFHPVydLXtEM2CQWd/tdj033OQY78fHksUmNiLF/Kq+uR
+44MB6aoPbTYnvhze2LtaguH/yRAGa7b2h0PtZC4yVIfjMA3TuV4jbGkqP8oOttVC
+DXrQldCcR9pY3rrQZs34kTU7aMmWKN0BReIo/ykI67cYRkXL5XGD9yfaYg89oc3+
+MU06yX/3nlteuj7Z4Gvne9KGWU6DVa8QMhqVkGNpYPv0BEuVJFHiMnTtUraHqwX/
+u5yfXzHsSUAtTwGw8QPvmXnHB1NcO/ZoSYOqe3zTEwSaFymM2V6sVyrYzBfDWQis
+dRyy5l3IgRibcGiFIiDb
+=CfqU
+-----END PGP SIGNATURE-----

Added: dev/commons/cli/source/commons-cli-1.3.1-src.zip.md5
==============================================================================
--- dev/commons/cli/source/commons-cli-1.3.1-src.zip.md5 (added)
+++ dev/commons/cli/source/commons-cli-1.3.1-src.zip.md5 Sun Jun 14 10:12:53 2015
@@ -0,0 +1 @@
+37dbf4812d5c7693898e6dd69de8ab86
\ No newline at end of file

Added: dev/commons/cli/source/commons-cli-1.3.1-src.zip.sha1
==============================================================================
--- dev/commons/cli/source/commons-cli-1.3.1-src.zip.sha1 (added)
+++ dev/commons/cli/source/commons-cli-1.3.1-src.zip.sha1 Sun Jun 14 10:12:53 2015
@@ -0,0 +1 @@
+e2ef61e1b66e8f08c14f17c0991865e35f8a7b36
\ No newline at end of file