...
- {
classpaths
}: will be replaced by the classpath specified in the runner, in addition to the project classpath if includeProjectClasspath is set. - {
mainClass
}: will be replaced by the runner's mainClass. - {
inputPath
}: will be replaced by the specification to test. (*MANDATORY*) - {
outputPath
}: will be replaced by the output path. (*MANDATORY*) - {
repository
}: will be replaced by the repository information comming from the associated repository. - {
fixtureFactory
}: will be replaced by the systemUnderDevelopment specified in the plugin configuation. - {
fixtureFactoryArgs
}: will be replaced by the systemUnderDevelopmentArgs specified in the plugin configuation.
Info | ||
---|---|---|
| ||
In this cmdLineTemplate, the template parameters are written without the dollar sign
For a compatibility reason, we will try to use the |
...
Code Block | ||||
---|---|---|---|---|
| ||||
<runner> <name>GP Core ${greenpepper.version}</name> <forkCount>${maven.greenpepper.forkCount}</forkCount> <cmdLineTemplate>${maven.greenpepper.jvm} ${maven.greenpepper.javaoptions} -cp {classpaths} {mainClass} {inputPath} {outputPath} -r {repository} -f {fixtureFactory};{fixtureFactoryArgs}</cmdLineTemplate> <mainClass>com.greenpepper.runner.Main</mainClass> <includeProjectClasspath>true</includeProjectClasspath> </runner> |
Info |
---|
Refer to the maven greenpepper:run goal documentation to get (or set) the value of: * |