Skip to content

Commit

Permalink
Replaced args4j with picocli (fixes #177)
Browse files Browse the repository at this point in the history
  • Loading branch information
shyiko committed Mar 21, 2018
1 parent 4225d64 commit f383257
Show file tree
Hide file tree
Showing 5 changed files with 152 additions and 133 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ ext.libraries = [
// Used to silence aether-transport-http
"slf4j_nop": "org.slf4j:slf4j-nop:1.6.2",
"maven_aether_provider": "org.apache.maven:maven-aether-provider:3.2.5",
"args4j": "args4j:args4j:2.33",
"picocli": "info.picocli:picocli:2.3.0",
"kolor": dependencies.create("com.andreapivetta.kolor:kolor:0.0.2") {
exclude group: "org.jetbrains.kotlin", module: "kotlin-stdlib-jre8"
},
Expand Down
2 changes: 1 addition & 1 deletion ktlint/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ dependencies {
compile libraries.aether_transport_http
compile libraries.slf4j_nop
compile libraries.maven_aether_provider
compile libraries.args4j
compile libraries.picocli

testCompile libraries.testng
testCompile libraries.assertj_core
Expand Down
6 changes: 3 additions & 3 deletions ktlint/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,9 @@
<version>1.6.2</version>
</dependency>
<dependency>
<groupId>args4j</groupId>
<artifactId>args4j</artifactId>
<version>${args4j.version}</version>
<groupId>info.picocli</groupId>
<artifactId>picocli</artifactId>
<version>${picocli.version}</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
Expand Down
Loading

0 comments on commit f383257

Please sign in to comment.