Class Pack200NormalizeMojo
- java.lang.Object
-
- org.apache.maven.plugin.AbstractMojo
-
- org.eclipse.tycho.extras.pack200.mojo.Pack200NormalizeMojo
-
- All Implemented Interfaces:
org.apache.maven.plugin.ContextEnabled,org.apache.maven.plugin.Mojo
@Mojo(name="normalize", defaultPhase=PACKAGE) public class Pack200NormalizeMojo extends org.apache.maven.plugin.AbstractMojoPerforms pack200 normalization,Pack200.Packerfor theory behind this.
-
-
Field Summary
Fields Modifier and Type Field Description private java.io.FilebuildDirectoryprivate java.lang.StringfinalNameName of the normalized JAR.private booleanforkWhether to fork the pack operation in a separate process.private Pack200Archiverpack200private java.util.List<org.apache.maven.artifact.Artifact>pluginArtifactsprivate org.apache.maven.project.MavenProjectprojectprivate booleanskipSkip execution.private java.util.List<java.lang.String>supportedProjectTypesProject types which this plugin supports.
-
Constructor Summary
Constructors Constructor Description Pack200NormalizeMojo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidexecute()
-
-
-
Field Detail
-
project
@Parameter(property="project", required=true) private org.apache.maven.project.MavenProject project
-
buildDirectory
@Parameter(property="project.build.directory", required=true) private java.io.File buildDirectory
-
finalName
@Parameter(alias="jarName", property="project.build.finalName", required=true) private java.lang.String finalNameName of the normalized JAR.
-
skip
@Parameter(defaultValue="false") private boolean skip
Skip execution.- Since:
- 0.20.0
-
fork
@Parameter(defaultValue="false") private boolean fork
Whether to fork the pack operation in a separate process.- Since:
- 0.23.0
-
supportedProjectTypes
@Parameter private java.util.List<java.lang.String> supportedProjectTypes
Project types which this plugin supports.
-
pluginArtifacts
@Parameter(property="plugin.artifacts") private java.util.List<org.apache.maven.artifact.Artifact> pluginArtifacts
-
pack200
@Component private Pack200Archiver pack200
-
-