A list of launcher definition (to avoid rewriting long command line or share way to call an application)
launchers could be define by :
<launchers>
<launcher>
<id>myLauncher</id>
<mainClass>my.project.Main</mainClass>
<args>
<arg>arg1</arg>
</args>
<jvmArgs>
<jvmArg>-Xmx64m</jvmArg>
</jvmArgs>
</launcher>
<launcher>
<id>myLauncher2</id>
...