Skip to content

Commit 85a357b

Browse files
removed commons cli parser
1 parent ea68354 commit 85a357b

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

pom.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,6 @@
1616
<version>3.5.0.201409260305-r</version>
1717
</dependency>
1818

19-
<!-- https://mvnrepository.com/artifact/commons-cli/commons-cli -->
20-
<dependency>
21-
<groupId>commons-cli</groupId>
22-
<artifactId>commons-cli</artifactId>
23-
<version>1.3</version>
24-
</dependency>
2519

2620
<!-- https://mvnrepository.com/artifact/com.beust/jcommander -->
2721
<dependency>

src/main/java/com/datastax/cdm/CassandraDatasetManager.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
import com.fasterxml.jackson.databind.ObjectMapper;
77
import com.fasterxml.jackson.dataformat.yaml.YAMLFactory;
88
import com.google.common.util.concurrent.ListenableFuture;
9-
import org.apache.commons.cli.*;
109
import org.apache.commons.csv.CSVFormat;
1110
import org.apache.commons.csv.CSVParser;
1211
import org.apache.commons.csv.CSVRecord;
@@ -60,7 +59,7 @@ public class InvalidArgsException extends Exception {
6059
}
6160

6261

63-
public static void main(String[] args) throws IOException, ParseException, InterruptedException, GitAPIException {
62+
public static void main(String[] args) throws IOException, InterruptedException, GitAPIException {
6463

6564
System.out.println("Starting CDM");
6665
CDMArgs parsedArgs = new CDMArgs();

0 commit comments

Comments
 (0)