MVN

com.github.brunoais : cli-args-parser

Maven & Gradle

Oct 10, 2016
1 stars

com.github.brunoais.CliArgsParser · This project is a feature-lean implementation of a CLI arguments parser. Just start by creating an instance of ParseArgs and follow the available methods. E.g. ParseArgs when = new ParseArgs(); when.argument("-do").spaceValue().call(this::doArgument); when.argument(null).call(this::defaultArgument); when.parse(args);

<dependency>
    <groupId>com.github.brunoais</groupId>
    <artifactId>cli-args-parser</artifactId>
    <version>0.2.2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.github.brunoais : cli-args-parser to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.2.2

All Versions

Choose a version of com.github.brunoais : cli-args-parser to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.3.x
cli-args-parser-0.3.0
0.2.x
cli-args-parser-0.2.2
cli-args-parser-0.2.1

How to add a dependency to Maven

Add the following com.github.brunoais : cli-args-parser maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.github.brunoais</groupId>
    <artifactId>cli-args-parser</artifactId>
    <version>0.2.2</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.github.brunoais : cli-args-parser gradle dependency to your build.gradle file:

implementation 'com.github.brunoais:cli-args-parser:0.2.2'

Gradle Kotlin DSL: Add the following com.github.brunoais : cli-args-parser gradle kotlin dependency to your build.gradle.kts file:

implementation("com.github.brunoais:cli-args-parser:0.2.2")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.github.brunoais : cli-args-parser sbt scala dependency to your build.sbt file:

libraryDependencies += "com.github.brunoais" % "cli-args-parser" % "0.2.2"

Advertisement