Package org.eclipse.tycho.source
Class AbstractSourceJarMojo
- java.lang.Object
-
- org.apache.maven.plugin.AbstractMojo
-
- org.eclipse.tycho.source.AbstractSourceJarMojo
-
- All Implemented Interfaces:
org.apache.maven.plugin.ContextEnabled,org.apache.maven.plugin.Mojo
- Direct Known Subclasses:
OsgiSourceMojo
public abstract class AbstractSourceJarMojo extends org.apache.maven.plugin.AbstractMojoBase class for bundling sources into a jar archive.- Since:
- 2.0.3
- Version:
- $Id: AbstractSourceJarMojo.java 763422 2009-04-08 21:59:54Z pgier $
-
-
Field Summary
Fields Modifier and Type Field Description protected booleanexcludeResourcesSpecifies whether or not to exclude resources from the sources-jar.protected StringfinalNameThe filename to be used for the generated archive file.protected booleanincludePomSpecifies whether or not to include the POM file in the sources-jar.protected FileoutputDirectoryThe directory where the generated archive file will be put.protected org.apache.maven.project.MavenProjectprojectThe Maven Project Objectprotected ListreactorProjectsContains the full list of projects in the reactor.protected org.apache.maven.execution.MavenSessionsessionThe Maven Session Object
-
Constructor Summary
Constructors Constructor Description AbstractSourceJarMojo()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected voidaddDirectory(org.codehaus.plexus.archiver.Archiver archiver, File sourceDirectory, String[] includes, String[] excludes)protected voidaddDirectory(org.codehaus.plexus.archiver.Archiver archiver, File sourceDirectory, String prefix, String[] includes, String[] excludes)protected voidarchiveProjectContent(org.apache.maven.project.MavenProject p, org.codehaus.plexus.archiver.Archiver archiver)protected org.apache.maven.archiver.MavenArchivercreateArchiver()voidexecute()protected abstract StringgetClassifier()protected StringgetExtension()protected org.apache.maven.project.MavenProjectgetProject(org.apache.maven.project.MavenProject p)protected abstract List<org.apache.maven.model.Resource>getResources(org.apache.maven.project.MavenProject p)protected abstract List<org.apache.maven.model.Resource>getSources(org.apache.maven.project.MavenProject p)protected StringgetType()protected abstract booleanisRelevantProject(org.apache.maven.project.MavenProject p)protected voidpackageSources(List<org.apache.maven.project.MavenProject> projects)protected voidpackageSources(org.apache.maven.project.MavenProject p)protected voidupdateSourceManifest(org.apache.maven.archiver.MavenArchiveConfiguration mavenArchiveConfiguration)
-
-
-
Field Detail
-
project
@Parameter(property="project", readonly=true, required=true) protected org.apache.maven.project.MavenProject projectThe Maven Project Object
-
session
@Parameter(property="session", readonly=true) protected org.apache.maven.execution.MavenSession sessionThe Maven Session Object
-
excludeResources
@Parameter(property="source.excludeResources", defaultValue="false") protected boolean excludeResourcesSpecifies whether or not to exclude resources from the sources-jar. This can be convenient if your project includes large resources, such as images, and you don't want to include them in the sources-jar.- Since:
- 2.0.4
-
includePom
@Parameter(property="source.includePom", defaultValue="false") protected boolean includePomSpecifies whether or not to include the POM file in the sources-jar.- Since:
- 2.1
-
outputDirectory
@Parameter(property="project.build.directory") protected File outputDirectory
The directory where the generated archive file will be put.
-
finalName
@Parameter(property="project.build.finalName") protected String finalName
The filename to be used for the generated archive file. For the source:jar goal, "-sources" is appended to this filename. For the source:test-jar goal, "-test-sources" is appended.
-
reactorProjects
@Parameter(property="reactorProjects", readonly=true) protected List reactorProjectsContains the full list of projects in the reactor.
-
-
Method Detail
-
execute
public void execute() throws org.apache.maven.plugin.MojoExecutionException- Throws:
org.apache.maven.plugin.MojoExecutionException
-
getClassifier
protected abstract String getClassifier()
- Returns:
- the wanted classifier, i.e.
sourcesortest-sources
-
getSources
protected abstract List<org.apache.maven.model.Resource> getSources(org.apache.maven.project.MavenProject p) throws org.apache.maven.plugin.MojoExecutionException
- Parameters:
p- not null- Returns:
- the compile or test sources
- Throws:
org.apache.maven.plugin.MojoExecutionException
-
getResources
protected abstract List<org.apache.maven.model.Resource> getResources(org.apache.maven.project.MavenProject p) throws org.apache.maven.plugin.MojoExecutionException
- Parameters:
p- not null- Returns:
- the compile or test resources
- Throws:
org.apache.maven.plugin.MojoExecutionException
-
packageSources
protected void packageSources(org.apache.maven.project.MavenProject p) throws org.apache.maven.plugin.MojoExecutionException- Throws:
org.apache.maven.plugin.MojoExecutionException
-
isRelevantProject
protected abstract boolean isRelevantProject(org.apache.maven.project.MavenProject p)
-
packageSources
protected void packageSources(List<org.apache.maven.project.MavenProject> projects) throws org.apache.maven.plugin.MojoExecutionException
- Throws:
org.apache.maven.plugin.MojoExecutionException
-
updateSourceManifest
protected void updateSourceManifest(org.apache.maven.archiver.MavenArchiveConfiguration mavenArchiveConfiguration)
-
archiveProjectContent
protected void archiveProjectContent(org.apache.maven.project.MavenProject p, org.codehaus.plexus.archiver.Archiver archiver) throws org.apache.maven.plugin.MojoExecutionException- Throws:
org.apache.maven.plugin.MojoExecutionException
-
createArchiver
protected org.apache.maven.archiver.MavenArchiver createArchiver() throws org.apache.maven.plugin.MojoExecutionException- Throws:
org.apache.maven.plugin.MojoExecutionException
-
addDirectory
protected void addDirectory(org.codehaus.plexus.archiver.Archiver archiver, File sourceDirectory, String[] includes, String[] excludes) throws org.apache.maven.plugin.MojoExecutionException- Throws:
org.apache.maven.plugin.MojoExecutionException
-
addDirectory
protected void addDirectory(org.codehaus.plexus.archiver.Archiver archiver, File sourceDirectory, String prefix, String[] includes, String[] excludes) throws org.apache.maven.plugin.MojoExecutionException- Throws:
org.apache.maven.plugin.MojoExecutionException
-
getExtension
protected String getExtension()
-
getProject
protected org.apache.maven.project.MavenProject getProject(org.apache.maven.project.MavenProject p)
-
getType
protected String getType()
-
-