blob: cbd5318f4b836e1f8d4285f917cce4c0dc1b04f8 [file] [log] [blame]
package org.apache.maven.shared.project.deploy;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import org.apache.maven.artifact.repository.ArtifactRepository;
import org.apache.maven.project.ProjectBuildingRequest;
/**
* This defines the interface to deploy a single Maven Project.
*
* @author Karl Heinz Marbaise <a href="mailto:khmarbaise@apache.org">khmarbaise@apache.org</a>
*/
public interface ProjectDeployer
{
/**
* This will deploy a single project which may contain several artifacts. Those artifacts will be deployed into the
* appropriate remote repository.
*
* <pre class="java">
* ..
* MavenSession session;
* MavenProject project;
* ..
* &#64;Inject
* ProjectDeployer deployer;
*
* ProjectBuildingRequest pbr =
* new ProjectBuildingRequest()
* .setProject (project)
* .setUpdateReleaseInfo( true );
*
* deployer.deploy (session.getProjectBuildingRequest(), pbr, artifactRepository);
*
* </pre>
*
* @param buildingRequest {@link ProjectBuildingRequest}
* @param request {@link ProjectDeployerRequest}
* @param artifactRepository {@link ArtifactRepository}
*/
void deployProject( ProjectBuildingRequest buildingRequest, ProjectDeployerRequest request,
ArtifactRepository artifactRepository );
}