All Downloads are FREE. Search and download functionalities are using the official Maven repository.

.bradleysmithllc.java-cl-parser.java-cl-parser.3.1.6.source-code.usage_template.vm Maven / Gradle / Ivy

Go to download

This parser strives to achieve an elegant, ioc-type interface to make launching command-line projects effortless.

There is a newer version: 3.4.2
Show newest version
${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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy