Interface ArtifactDeployer

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String ROLE  
    • Method Summary

      All Methods Instance Methods Abstract Methods Deprecated Methods 
      Modifier and Type Method Description
      void deploy​(java.io.File source, org.apache.maven.artifact.Artifact artifact, org.apache.maven.artifact.repository.ArtifactRepository deploymentRepository, org.apache.maven.artifact.repository.ArtifactRepository localRepository)
      Deploy an artifact from a particular file.
      void deploy​(java.lang.String basedir, java.lang.String finalName, org.apache.maven.artifact.Artifact artifact, org.apache.maven.artifact.repository.ArtifactRepository deploymentRepository, org.apache.maven.artifact.repository.ArtifactRepository localRepository)
      Deprecated.
      to be removed before 2.0 after the install/deploy plugins use the alternate method
    • Field Detail

      • ROLE

        static final java.lang.String ROLE
    • Method Detail

      • deploy

        @Deprecated
        void deploy​(java.lang.String basedir,
                    java.lang.String finalName,
                    org.apache.maven.artifact.Artifact artifact,
                    org.apache.maven.artifact.repository.ArtifactRepository deploymentRepository,
                    org.apache.maven.artifact.repository.ArtifactRepository localRepository)
             throws ArtifactDeploymentException
        Deprecated.
        to be removed before 2.0 after the install/deploy plugins use the alternate method
        Deploy an artifact from a particular directory. The artifact handler is used to determine the filename of the source file.
        Parameters:
        basedir - the directory where the artifact is stored
        finalName - the name of the artifact without extension
        artifact - the artifact definition
        deploymentRepository - the repository to deploy to
        localRepository - the local repository to install into
        Throws:
        ArtifactDeploymentException - if an error occurred deploying the artifact
      • deploy

        void deploy​(java.io.File source,
                    org.apache.maven.artifact.Artifact artifact,
                    org.apache.maven.artifact.repository.ArtifactRepository deploymentRepository,
                    org.apache.maven.artifact.repository.ArtifactRepository localRepository)
             throws ArtifactDeploymentException
        Deploy an artifact from a particular file.
        Parameters:
        source - the file to deploy
        artifact - the artifact definition
        deploymentRepository - the repository to deploy to
        localRepository - the local repository to install into
        Throws:
        ArtifactDeploymentException - if an error occurred deploying the artifact