Clad: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 41: Line 41:
=Development=
=Development=


==New Release==
<blockquote style="background-color: #f9f9f9; border: solid thin lightgrey;">
 
:[[clad Development]]
This will install a new "development" release (same release number) in the Maven repository:
</blockquote>
<pre>
cdclad
mvn clean install
</pre>
 
==Indvidual Unit Test==
 
<pre>
mvn -Dmaven.surefire.debug="-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5012" -Dtest=StringOptionTest clean test
</pre>

Revision as of 05:16, 2 March 2016

Internal

Overview

Command-Line Application Development (clad) is a collection of Java classes providing functionality that can be used to build command line tools. It includes support for:

  • command-oriented CLI
  • command-line and YAML-based persistent configuration
  • hierarchical in-line help
  • logging and error message handling support
  • version and release date mechanism
  • standard release tools

The project's artifact is a java library other dependent project can get from a Maven repository:

<dependency>
    <groupId>io.novaordis.clad</groupId>
    <artifactId>novaordis-clad</artifactId>
    <version>1</version>
</dependency>

GitHub


https://github.com/NovaOrdis/clad

TODO

doc/cliff.docx TODO section.

User Manual

clad User Manual

Development

clad Development