/
GreenPepper Maven Plugin - fixture-jar

GreenPepper Maven Plugin - fixture-jar

greenpepper:fixture-jar

Build a JAR of the test classes for the current project.

Mojo Attributes

  • Requires a Maven 2.0 project to execute.
  • Automatically executes within the lifecycle phase: post-integration-test

Required Parameters

Name

Type

Description

finalName

String

Name of the generated JAR.

fixtureOutputDirectory

File

Directory containing the fixture classes. Default value is ${project.build.directory}/fixture-test-classes

outputDirectory

File

Directory containing the generated JAR.

Optional Parameters

Name

Type

Description

archive

MavenArchiveConfiguration

The maven archive configuration to use.
See <a href="http://maven.apache.org/ref/current/maven-archiver/apidocs/org/apache/maven/archiver/MavenArchiveConfiguration.html">the Javadocs for MavenArchiveConfiguration</a>.

forceCreation

boolean

Whether creating the archive should be forced. Default value is false

skip

boolean

Set this to 'true' to bypass greenpepper fixture jar process entirely.
Its use is NOT RECOMMENDED, but quite convenient on occasion. Default value is false

Parameter Details

archive

The maven archive configuration to use.

See <a href="http://maven.apache.org/ref/current/maven-archiver/apidocs/org/apache/maven/archiver/MavenArchiveConfiguration.html">the Javadocs for MavenArchiveConfiguration</a>.

Type

org.apache.maven.archiver.MavenArchiveConfiguration

Required

No

finalName

Name of the generated JAR.

Type

java.lang.String

Required

Yes

Expression

${project.build.finalName}

fixtureOutputDirectory

Directory containing the fixture classes.

Type

java.io.File

Required

Yes

Default

${project.build.directory}/fixture-test-classes

forceCreation

Whether creating the archive should be forced.

Type

boolean

Required

No

Expression

${jar.forceCreation}

Default

false

outputDirectory

Directory containing the generated JAR.

Type

java.io.File

Required

Yes

Expression

${project.build.directory}

skip

Set this to 'true' to bypass greenpepper fixture jar process entirely.
Its use is NOT RECOMMENDED, but quite convenient on occasion.

Type

boolean

Required

No

Expression

${maven.greenpepper.test.skip}

Default

false

Related content