Skip to content

Commit

Permalink
Updating to the maintained version of cli-parser.
Browse files Browse the repository at this point in the history
  • Loading branch information
subwiz committed Mar 28, 2018
1 parent 33a82a6 commit 3a6a772
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -13,7 +13,7 @@ repositories {

dependencies {
compile 'org.wiztools.commons:wiztools-commons-lib:0.4.1',
'com.google.code.cli-parser:cli:7'
'com.github.spullara.cli-parser:cli-parser:1.1.2'
compile('xom:xom:1.2.5') {
exclude module: ['xerces:xercesImpl', 'xalan:xalan', 'xml-apis:xml-apis']
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/wiztools/xsdgen/XsdGenMain.java
Expand Up @@ -24,7 +24,7 @@ private static class ArgParse {
@Argument(value="o", alias="output", description="Write xsd to outfile instead of STDOUT.")
private String xsdFile;

@Argument(value="f", alias="force", description="Force write output XSD even if it exists.")
@Argument(value="f", alias="force", description="Overwrite output XSD if it exists.")
private boolean isForceWrite;

@Argument(value="e", alias="encoding", description="Output encoding (default is `UTF-8').")
Expand Down

0 comments on commit 3a6a772

Please sign in to comment.