|
3 | 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
5 | 5 | <modelVersion>4.0.0</modelVersion>
|
6 |
| - <artifactId>astra-sh</artifactId> |
| 6 | + <artifactId>astra-shell</artifactId> |
7 | 7 | <name>+ astra-shell</name>
|
8 | 8 | <packaging>jar</packaging>
|
9 | 9 |
|
|
15 | 15 |
|
16 | 16 | <properties>
|
17 | 17 | <jansi.version>2.4.0</jansi.version>
|
| 18 | + <airline.version>2.7.2</airline.version> |
18 | 19 | <commons-cli.version>1.5.0</commons-cli.version>
|
19 | 20 | <commons-lang.version>3.12.0</commons-lang.version>
|
20 | 21 | <maven-plugin-exec.version>3.0.0</maven-plugin-exec.version>
|
21 | 22 | </properties>
|
22 | 23 |
|
23 | 24 | <dependencies>
|
| 25 | + |
| 26 | + <!-- Parsing CLI --> |
| 27 | + <dependency> |
| 28 | + <groupId>com.github.rvesse</groupId> |
| 29 | + <artifactId>airline</artifactId> |
| 30 | + <version>${airline.version}</version> |
| 31 | + </dependency> |
| 32 | + <dependency> |
| 33 | + <groupId>commons-cli</groupId> |
| 34 | + <artifactId>commons-cli</artifactId> |
| 35 | + <version>${commons-cli.version}</version> |
| 36 | + </dependency> |
| 37 | + |
| 38 | + <!-- Leveraging SDK for Astra Accesses --> |
24 | 39 | <dependency>
|
25 | 40 | <groupId>com.datastax.astra</groupId>
|
26 | 41 | <artifactId>astra-sdk</artifactId>
|
|
31 | 46 | <artifactId>jansi</artifactId>
|
32 | 47 | <version>${jansi.version}</version>
|
33 | 48 | </dependency>
|
34 |
| - <dependency> |
35 |
| - <groupId>commons-cli</groupId> |
36 |
| - <artifactId>commons-cli</artifactId> |
37 |
| - <version>${commons-cli.version}</version> |
38 |
| - </dependency> |
| 49 | + |
| 50 | + <!-- Commons --> |
39 | 51 | <dependency>
|
40 | 52 | <groupId>org.apache.commons</groupId>
|
41 | 53 | <artifactId>commons-lang3</artifactId>
|
|
59 | 71 | <scope>test</scope>
|
60 | 72 | </dependency>
|
61 | 73 |
|
62 |
| - |
63 | 74 | </dependencies>
|
64 | 75 |
|
65 | 76 | <build>
|
|
0 commit comments