Repository: tika Updated Branches: refs/heads/master 01109c8fe -> 67fac456c
TIKA-1919 Project: http://git-wip-us.apache.org/repos/asf/tika/repo Commit: http://git-wip-us.apache.org/repos/asf/tika/commit/67fac456 Tree: http://git-wip-us.apache.org/repos/asf/tika/tree/67fac456 Diff: http://git-wip-us.apache.org/repos/asf/tika/diff/67fac456 Branch: refs/heads/master Commit: 67fac456cb29359b69e2d1a5e0bc22fd51a09eb5 Parents: 01109c8 Author: tballison <[email protected]> Authored: Thu Mar 31 12:52:38 2016 -0400 Committer: tballison <[email protected]> Committed: Thu Mar 31 12:52:38 2016 -0400 ---------------------------------------------------------------------- tika-batch/pom.xml | 2 +- .../main/java/org/apache/tika/batch/fs/FSBatchProcessCLI.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tika/blob/67fac456/tika-batch/pom.xml ---------------------------------------------------------------------- diff --git a/tika-batch/pom.xml b/tika-batch/pom.xml index 9ab9182..e5b5296 100644 --- a/tika-batch/pom.xml +++ b/tika-batch/pom.xml @@ -35,7 +35,7 @@ <url>http://tika.apache.org/</url> <properties> - <cli.version>1.2</cli.version> + <cli.version>1.3.1</cli.version> </properties> <dependencies> http://git-wip-us.apache.org/repos/asf/tika/blob/67fac456/tika-batch/src/main/java/org/apache/tika/batch/fs/FSBatchProcessCLI.java ---------------------------------------------------------------------- diff --git a/tika-batch/src/main/java/org/apache/tika/batch/fs/FSBatchProcessCLI.java b/tika-batch/src/main/java/org/apache/tika/batch/fs/FSBatchProcessCLI.java index f358002..5bf96a9 100644 --- a/tika-batch/src/main/java/org/apache/tika/batch/fs/FSBatchProcessCLI.java +++ b/tika-batch/src/main/java/org/apache/tika/batch/fs/FSBatchProcessCLI.java @@ -29,7 +29,7 @@ import java.util.concurrent.Future; import org.apache.commons.cli.CommandLine; import org.apache.commons.cli.CommandLineParser; -import org.apache.commons.cli.GnuParser; +import org.apache.commons.cli.DefaultParser; import org.apache.commons.cli.HelpFormatter; import org.apache.commons.cli.Option; import org.apache.commons.cli.Options; @@ -93,7 +93,7 @@ public class FSBatchProcessCLI { private void execute(String[] args) throws Exception { - CommandLineParser cliParser = new GnuParser(); + CommandLineParser cliParser = new DefaultParser(); CommandLine line = cliParser.parse(options, args); if (line.hasOption("help")) {
