.bradleysmithllc.java-cl-parser.java-cl-parser.3.1.6.source-code.usage_template.vm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-cl-parser Show documentation
Show all versions of java-cl-parser Show documentation
This parser strives to achieve an elegant, ioc-type interface to make launching command-line projects
effortless.
${nickName}
VERSION
${version}
#if(${synopsis})
SYNOPSIS
#foreach($synline in $synopsis)
${synline}
#end
#end
#if(${description})
DESCRIPTION
#foreach($descline in $description)
${descline}
#end
#end
#if(${options})
OPTIONS
#foreach($optline in $options)
NAME: -${optline.shortName}#if(${optline.longName}), --${optline.longName}#end
REQUIRED: ${optline.required}
#if (${optline.dataType})
DATA TYPE: ${optline.dataType}
#end
#if (${optline.defaultValue})
DEFAULT: ${optline.defaultValue}
#end
DESCRIPTION:
#foreach($description in $optline.descriptionLines)
${description}
#end
#end
#end
#if(${documentationUrl})
ONLINE DOCUMENTATION
${documentationUrl}
#end
#if(${scm})
PROJECT
${scm}
#end
#if(${contact})
CONTACT
${contact}
#end