Coverage Report - org.apache.maven.artifact.ant.DeployTask
 
Classes in this File Line Coverage Branch Coverage Complexity
DeployTask
0%
0/61
0%
0/36
0
 
 1  
 package org.apache.maven.artifact.ant;
 2  
 
 3  
 /*
 4  
  * Licensed to the Apache Software Foundation (ASF) under one
 5  
  * or more contributor license agreements.  See the NOTICE file
 6  
  * distributed with this work for additional information
 7  
  * regarding copyright ownership.  The ASF licenses this file
 8  
  * to you under the Apache License, Version 2.0 (the
 9  
  * "License"); you may not use this file except in compliance
 10  
  * with the License.  You may obtain a copy of the License at
 11  
  *
 12  
  *  http://www.apache.org/licenses/LICENSE-2.0
 13  
  *
 14  
  * Unless required by applicable law or agreed to in writing,
 15  
  * software distributed under the License is distributed on an
 16  
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 17  
  * KIND, either express or implied.  See the License for the
 18  
  * specific language governing permissions and limitations
 19  
  * under the License.
 20  
  */
 21  
 
 22  
 import org.apache.maven.artifact.Artifact;
 23  
 import org.apache.maven.artifact.deployer.ArtifactDeployer;
 24  
 import org.apache.maven.artifact.deployer.ArtifactDeploymentException;
 25  
 import org.apache.maven.artifact.metadata.ArtifactMetadata;
 26  
 import org.apache.maven.artifact.repository.ArtifactRepository;
 27  
 import org.apache.maven.artifact.repository.ArtifactRepositoryFactory;
 28  
 import org.apache.maven.artifact.repository.layout.ArtifactRepositoryLayout;
 29  
 import org.apache.maven.model.DistributionManagement;
 30  
 import org.apache.maven.project.artifact.ProjectArtifactMetadata;
 31  
 import org.apache.tools.ant.BuildException;
 32  
 import org.apache.tools.ant.Project;
 33  
 
 34  
 /**
 35  
  * Deploy task, using maven-artifact.
 36  
  *
 37  
  * @author <a href="mailto:brett@apache.org">Brett Porter</a>
 38  
  * @version $Id$
 39  
  */
 40  0
 public class DeployTask
 41  
     extends InstallDeployTaskSupport
 42  
 {
 43  
     private RemoteRepository remoteRepository;
 44  
 
 45  
     private RemoteRepository remoteSnapshotRepository;
 46  
 
 47  0
     private boolean uniqueVersion = true;
 48  
 
 49  
     /**
 50  
      * Create a core-Maven deployment ArtifactRepository from a Maven Ant Tasks's RemoteRepository definition.
 51  
      * @param repository the remote repository as defined in Ant
 52  
      * @return the corresponding ArtifactRepository
 53  
      */
 54  
     protected ArtifactRepository createDeploymentArtifactRepository( RemoteRepository repository )
 55  
     {
 56  0
         if ( repository.getId().equals( repository.getUrl() ) )
 57  
         {
 58  
             // MANTTASKS-103: avoid default id set to the url, since it is used for maven-metadata-<id>.xml
 59  0
             repository.setId( "remote" );
 60  
         }
 61  
 
 62  0
         updateRepositoryWithSettings( repository );
 63  
 
 64  0
         ArtifactRepositoryLayout repositoryLayout =
 65  
             (ArtifactRepositoryLayout) lookup( ArtifactRepositoryLayout.ROLE, repository.getLayout() );
 66  
 
 67  0
         ArtifactRepositoryFactory repositoryFactory = null;
 68  
 
 69  
         ArtifactRepository artifactRepository;
 70  
 
 71  
         try
 72  
         {
 73  0
             repositoryFactory = getArtifactRepositoryFactory( repository );
 74  
 
 75  0
             artifactRepository =
 76  
                 repositoryFactory.createDeploymentArtifactRepository( repository.getId(), repository.getUrl(),
 77  
                                                                       repositoryLayout, uniqueVersion );
 78  
         }
 79  
         finally
 80  
         {
 81  0
             releaseArtifactRepositoryFactory( repositoryFactory );
 82  0
         }
 83  
 
 84  0
         return artifactRepository;
 85  
     }
 86  
 
 87  
 
 88  
     protected void doExecute()
 89  
     {
 90  0
         if ( file == null && ( attachedArtifacts.size() == 0 ) )
 91  
         {
 92  0
             throw new BuildException( "You must specify a file and/or an attached artifact "
 93  
                 + "to deploy to the repository." );
 94  
         }
 95  
 
 96  0
         ArtifactRepository localRepo = createLocalArtifactRepository();
 97  
 
 98  0
         Pom pom = initializePom( localRepo );
 99  
 
 100  0
         if ( pom == null )
 101  
         {
 102  0
             throw new BuildException( "A POM element is required to deploy to the repository" );
 103  
         }
 104  
 
 105  0
         Artifact artifact = pom.getArtifact();
 106  
 
 107  
         // Deploy the POM
 108  0
         boolean isPomArtifact = "pom".equals( pom.getPackaging() );
 109  0
         if ( !isPomArtifact )
 110  
         {
 111  0
             ArtifactMetadata metadata = new ProjectArtifactMetadata( artifact, pom.getFile() );
 112  0
             artifact.addMetadata( metadata );
 113  
         }
 114  
 
 115  0
         ArtifactRepository deploymentRepository = getDeploymentRepository( pom, artifact );
 116  
 
 117  0
         log( "Deploying to " + deploymentRepository.getUrl(), Project.MSG_INFO );
 118  0
         ArtifactDeployer deployer = (ArtifactDeployer) lookup( ArtifactDeployer.ROLE );
 119  
         try
 120  
         {
 121  0
             if ( file != null )
 122  
             {
 123  0
                 if ( !isPomArtifact )
 124  
                 {
 125  0
                     deployer.deploy( file, artifact, deploymentRepository, localRepo );
 126  
                 }
 127  
                 else
 128  
                 {
 129  0
                     deployer.deploy( pom.getFile(), artifact, deploymentRepository, localRepo );
 130  
                 }
 131  
             }
 132  
 
 133  
             // Deploy any attached artifacts
 134  0
             if ( attachedArtifacts != null )
 135  
             {
 136  0
                 for ( Artifact attachedArtifact : pom.getAttachedArtifacts() )
 137  
                 {
 138  0
                     deployer.deploy( attachedArtifact.getFile(), attachedArtifact, deploymentRepository, localRepo );
 139  
                 }
 140  
             }
 141  
         }
 142  0
         catch ( ArtifactDeploymentException e )
 143  
         {
 144  0
             throw new BuildException(
 145  
                 "Error deploying artifact '" + artifact.getDependencyConflictId() + "': " + e.getMessage(), e );
 146  0
         }
 147  0
     }
 148  
 
 149  
     private ArtifactRepository getDeploymentRepository( Pom pom, Artifact artifact )
 150  
     {
 151  0
         DistributionManagement distributionManagement = pom.getDistributionManagement();
 152  
 
 153  0
         if ( remoteSnapshotRepository == null && remoteRepository == null )
 154  
         {
 155  0
             if ( distributionManagement != null )
 156  
             {
 157  0
                 if ( distributionManagement.getSnapshotRepository() != null )
 158  
                 {
 159  0
                     remoteSnapshotRepository = createAntRemoteRepositoryBase( distributionManagement
 160  
                         .getSnapshotRepository() );
 161  0
                     uniqueVersion = distributionManagement.getSnapshotRepository().isUniqueVersion();
 162  
                 }
 163  0
                 if ( distributionManagement.getRepository() != null )
 164  
                 {
 165  0
                     remoteRepository = createAntRemoteRepositoryBase( distributionManagement.getRepository() );
 166  
                 }
 167  
             }
 168  
         }
 169  
 
 170  0
         if ( remoteSnapshotRepository == null )
 171  
         {
 172  0
             remoteSnapshotRepository = remoteRepository;
 173  
         }
 174  
 
 175  
         ArtifactRepository deploymentRepository;
 176  0
         if ( artifact.isSnapshot() && remoteSnapshotRepository != null )
 177  
         {
 178  0
             deploymentRepository = createDeploymentArtifactRepository( remoteSnapshotRepository );
 179  
         }
 180  0
         else if ( remoteRepository != null )
 181  
         {
 182  0
             deploymentRepository = createDeploymentArtifactRepository( remoteRepository );
 183  
         }
 184  
         else
 185  
         {
 186  0
             throw new BuildException(
 187  
                 "A distributionManagement element or remoteRepository element is required to deploy" );
 188  
         }
 189  
 
 190  0
         return deploymentRepository;
 191  
     }
 192  
 
 193  
     public RemoteRepository getRemoteRepository()
 194  
     {
 195  0
         return remoteRepository;
 196  
     }
 197  
 
 198  
     public void addRemoteSnapshotRepository( RemoteRepository remoteSnapshotRepository )
 199  
     {
 200  0
         this.remoteSnapshotRepository = remoteSnapshotRepository;
 201  0
     }
 202  
 
 203  
     public void addRemoteRepository( RemoteRepository remoteRepository )
 204  
     {
 205  0
         this.remoteRepository = remoteRepository;
 206  0
     }
 207  
 
 208  
     public void setUniqueVersion( boolean uniqueVersion )
 209  
     {
 210  0
         this.uniqueVersion = uniqueVersion;
 211  0
     }
 212  
 
 213  
     public boolean getUniqueVersion()
 214  
     {
 215  0
         return uniqueVersion;
 216  
     }
 217  
 }