Package org.eclipse.tycho.packaging
Class PackagePluginMojo
- java.lang.Object
-
- org.apache.maven.plugin.AbstractMojo
-
- org.eclipse.tycho.packaging.AbstractTychoPackagingMojo
-
- org.eclipse.tycho.packaging.PackagePluginMojo
-
- All Implemented Interfaces:
org.apache.maven.plugin.ContextEnabled
,org.apache.maven.plugin.Mojo
@Mojo(name="package-plugin") public class PackagePluginMojo extends AbstractTychoPackagingMojo
Creates a jar-based plugin and attaches it as an artifact
-
-
Field Summary
Fields Modifier and Type Field Description protected File
buildDirectory
The output directory of the jar file By default this is the Maven "target/" directory.protected String
finalName
Name of the generated JAR.protected EclipsePluginProject
pdeProject
-
Fields inherited from class org.eclipse.tycho.packaging.AbstractTychoPackagingMojo
plexus, project, projectHelper, qualifier, session, strictBinIncludes, useDefaultExcludes
-
-
Constructor Summary
Constructors Constructor Description PackagePluginMojo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
execute()
-
Methods inherited from class org.eclipse.tycho.packaging.AbstractTychoPackagingMojo
checkBinIncludesExist, getDependencyArtifacts, getDependencyWalker, getFileSet, getTychoProjectFacet, getTychoProjectFacet
-
-
-
-
Field Detail
-
buildDirectory
@Parameter(property="project.build.directory", required=true) protected File buildDirectory
The output directory of the jar file By default this is the Maven "target/" directory.
-
pdeProject
protected EclipsePluginProject pdeProject
-
finalName
@Parameter(property="project.build.finalName", alias="jarName", required=true) protected String finalName
Name of the generated JAR.
-
-