DJUTILS-CLI project¶
What is in the DJUTILS CLI project?¶
DJUTILS-CLI makes it easy to extend a Java program with a public static main()
method into a program with settable parameters and a help screen, so it can be called with these parameters, e.g. as:
java -jar FederateStarter.jar --port=5000 --server=local
What makes it easy to use is that this will set an integer field called 'port' to the value 5000, and a String field called server to the value "local". In addition, default values are available for parameters not explicitly set by a user, and the program can print an overview of the parameters and their meaning. All it takes is an @Option
annotation for the field in the main class:
@Option(names = {"-p", "--port"}, description = "Internet port to use", defaultValue = "80")
private int port;
Maven use¶
Maven is one of the easiest ways to include DJUTILS-CLI in a Java project. The Maven files for DJUTILS-CLI reside at Maven Central as of version 2.0.0. When a POM-file is created for the project, the following snippet needs to be included to include DJUTILS-CLI:
<dependencies>
<dependency>
<groupId>org.djutils</groupId>
<artifactId>djutils-cli</artifactId>
<version>2.2.1</version>
</dependency>
</dependencies>
Of course, the version number (2.2.1 in the above example) needs to be replaced with the version that one wants to include in the project.
DJUTILS-CLI jars before version 2 are kept on a server at TU Delft at https://djutils.org/maven.
Dependencies¶
DJUTILS is directly dependent on the following packages, which can have further dependencies:
- djutils for generic classes to support djutils-cli.
- djunits for being able to specify command line parameters with usits, such as
--length=20.5cm
. - picocli that does the actual work for specifying and parsing the command line parameters
If the DJUTILS-CLI library is used as a part of a Maven project, all dependencies will be automatically resolved, and the programmer / user does not have to worry about finding the libraries.
Documentation and test reports¶
DJUTILS-CLI documentation and test reports for the current version can be found at https://djutils.org/docs/latest/djutils-cli and the API can be found at https://djutils.org/docs/latest/djutils-cli/apidocs/index.html.