hudson.maven.reporters
Class MavenArtifactRecord

java.lang.Object
  extended by hudson.model.AbstractModelObject
      extended by hudson.model.TaskAction
          extended by hudson.maven.reporters.MavenAbstractArtifactRecord<MavenBuild>
              extended by hudson.maven.reporters.MavenArtifactRecord
All Implemented Interfaces:
AggregatableAction, Action, BuildBadgeAction, ModelObject, SearchableModelObject, SearchItem

public class MavenArtifactRecord
extends MavenAbstractArtifactRecord<MavenBuild>
implements AggregatableAction

Action that remembers artifacts that are built. Defines the methods and UIs to do (delayed) deployment and installation.

Author:
Kohsuke Kawaguchi
See Also:
MavenArtifactArchiver

Nested Class Summary
 
Nested classes/interfaces inherited from class hudson.maven.reporters.MavenAbstractArtifactRecord
MavenAbstractArtifactRecord.Record
 
Field Summary
 List<MavenArtifact> attachedArtifacts
          Attached artifacts.
 MavenArtifact mainArtifact
          The main artifact (like jar or war, but could be anything.) If this is a POM module, the main artifact contains the same value as pomArtifact.
 MavenBuild parent
          The build to which this record belongs.
 MavenArtifact pomArtifact
          POM artifact.
 
Fields inherited from class hudson.maven.reporters.MavenAbstractArtifactRecord
debug, records, REDEPLOY
 
Fields inherited from class hudson.model.TaskAction
log, workerThread
 
Constructor Summary
MavenArtifactRecord(MavenBuild parent, MavenArtifact pomArtifact, MavenArtifact mainArtifact, List<MavenArtifact> attachedArtifacts)
           
 
Method Summary
 MavenAggregatedReport createAggregatedAction(MavenModuleSetBuild build, Map<MavenModule,List<MavenBuild>> moduleBuilds)
          Creates Action to be contributed to MavenModuleSetBuild.
 void deploy(hudson.maven.MavenEmbedder embedder, org.apache.maven.artifact.repository.ArtifactRepository deploymentRepository, TaskListener listener)
          Deploys the artifacts to the specified ArtifactRepository.
 MavenBuild getBuild()
          Gets the parent build object to which this record is registered.
 void install(hudson.maven.MavenEmbedder embedder)
          Installs the artifact to the local Maven repository.
 boolean isPOM()
           
 void recordFingerprints()
           
 
Methods inherited from class hudson.maven.reporters.MavenAbstractArtifactRecord
doRedeploy, getACL, getDisplayName, getDynamic, getHistoryWidget, getIconFileName, getPermission, getUrlName, hasBadge
 
Methods inherited from class hudson.model.TaskAction
doClearError, doProgressiveHtml, doProgressiveLog, getLog, getSearchUrl, getWorkerThread, obtainLog
 
Methods inherited from class hudson.model.AbstractModelObject
getSearch, getSearchIndex, getSearchName, makeSearchIndex, requirePOST, sendError, sendError, sendError, sendError, sendError
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface hudson.model.Action
getDisplayName, getIconFileName, getUrlName
 

Field Detail

parent

public final MavenBuild parent
The build to which this record belongs.


pomArtifact

public final MavenArtifact pomArtifact
POM artifact.


mainArtifact

public final MavenArtifact mainArtifact
The main artifact (like jar or war, but could be anything.) If this is a POM module, the main artifact contains the same value as pomArtifact.


attachedArtifacts

public final List<MavenArtifact> attachedArtifacts
Attached artifacts. Can be empty but never null.

Constructor Detail

MavenArtifactRecord

public MavenArtifactRecord(MavenBuild parent,
                           MavenArtifact pomArtifact,
                           MavenArtifact mainArtifact,
                           List<MavenArtifact> attachedArtifacts)
Method Detail

getBuild

public MavenBuild getBuild()
Description copied from class: MavenAbstractArtifactRecord
Gets the parent build object to which this record is registered.

Specified by:
getBuild in class MavenAbstractArtifactRecord<MavenBuild>

isPOM

public boolean isPOM()

createAggregatedAction

public MavenAggregatedReport createAggregatedAction(MavenModuleSetBuild build,
                                                    Map<MavenModule,List<MavenBuild>> moduleBuilds)
Description copied from interface: AggregatableAction
Creates Action to be contributed to MavenModuleSetBuild.

Specified by:
createAggregatedAction in interface AggregatableAction
Parameters:
build - MavenModuleSetBuild for which the aggregated report is created.
moduleBuilds - The result of MavenModuleSetBuild.getModuleBuilds() provided for convenience and efficiency.
Returns:
null if the reporter provides no such action.

deploy

public void deploy(hudson.maven.MavenEmbedder embedder,
                   org.apache.maven.artifact.repository.ArtifactRepository deploymentRepository,
                   TaskListener listener)
            throws hudson.maven.MavenEmbedderException,
                   IOException,
                   org.codehaus.plexus.component.repository.exception.ComponentLookupException,
                   org.apache.maven.artifact.deployer.ArtifactDeploymentException
Description copied from class: MavenAbstractArtifactRecord
Deploys the artifacts to the specified ArtifactRepository.

Specified by:
deploy in class MavenAbstractArtifactRecord<MavenBuild>
Parameters:
embedder - This component hosts all the Maven components we need to do the work.
deploymentRepository - The remote repository to deploy to.
listener - The status and error goes to this listener.
Throws:
hudson.maven.MavenEmbedderException
IOException
org.codehaus.plexus.component.repository.exception.ComponentLookupException
org.apache.maven.artifact.deployer.ArtifactDeploymentException

install

public void install(hudson.maven.MavenEmbedder embedder)
             throws hudson.maven.MavenEmbedderException,
                    IOException,
                    org.codehaus.plexus.component.repository.exception.ComponentLookupException,
                    org.apache.maven.artifact.installer.ArtifactInstallationException
Installs the artifact to the local Maven repository.

Throws:
hudson.maven.MavenEmbedderException
IOException
org.codehaus.plexus.component.repository.exception.ComponentLookupException
org.apache.maven.artifact.installer.ArtifactInstallationException

recordFingerprints

public void recordFingerprints()
                        throws IOException
Throws:
IOException


Copyright © 2004-2011. All Rights Reserved.