CLI enables Java developers to automatically create command line parameters for their code based on the fields detected in the code.
The library is available in Maven Central, so you can easily embed it in your projects.
For Maven projects, add this to your pom.xml:
<dependencies>
<dependency>
<groupId>il.org.spartan</groupId>
<artifactId>cli</artifactId>
<version>1.0</version>
</dependency>
...
</dependencies>
For Gradle projects, add this to your build.gradle:
compile 'il.org.spartan:cli:1.0'
To compile the library from source, clone this repository to your local computer and run:
mvn package
Then, include the generated .jar file in your project.
This library is an open source project and is available under the MIT License