Skip to content

Commit

Permalink
TIKA-1919
Browse files Browse the repository at this point in the history
  • Loading branch information
tballison committed Mar 31, 2016
1 parent 01109c8 commit 67fac45
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tika-batch/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

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;
Expand Down Expand Up @@ -93,7 +93,7 @@ private TikaInputStream getConfigInputStream(String[] args, boolean logDefault)

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")) {
Expand Down

0 comments on commit 67fac45

Please sign in to comment.