Additional dependencies/jar to add to classpath to run "scalaClassName" (scope and optional field not supported)
ex :
<dependencies>
<dependency>
<groupId>org.scala-tools</groupId>
<artifactId>scala-compiler-addon</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
</dependencies>
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>
...
Grossly hacky utility class which provides the fully unpacked OSGi classpath
(ie. including nested .jars) when used in the context of Tycho and Maven 3.