blob: 499528f0b25ff30da4864d5050f9a52054ca7036 [file] [log] [blame]
/*
* 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.
*/
package org.apache.maven.shared.release;
/**
* Release management classes.
*
* @author <a href="mailto:brett@apache.org">Brett Porter</a>
*/
public interface ReleaseManager {
/**
* Prepare a release.
*
* @param prepareRequest all prepare arguments
* @throws org.apache.maven.shared.release.ReleaseExecutionException if there is a problem performing the release
* @throws org.apache.maven.shared.release.ReleaseFailureException if there is a problem performing the release
* @since 2.3
*/
void prepare(ReleasePrepareRequest prepareRequest) throws ReleaseExecutionException, ReleaseFailureException;
/**
* <p>prepareWithResult.</p>
*
* @param prepareRequest a {@link org.apache.maven.shared.release.ReleasePrepareRequest} object
* @return a {@link org.apache.maven.shared.release.ReleaseResult} object
*/
ReleaseResult prepareWithResult(ReleasePrepareRequest prepareRequest);
/**
* <p>performWithResult.</p>
*
* @param performRequest a {@link org.apache.maven.shared.release.ReleasePerformRequest} object
* @return a {@link org.apache.maven.shared.release.ReleaseResult} object
*/
ReleaseResult performWithResult(ReleasePerformRequest performRequest);
/**
* Perform a release
*
* @param performRequest all perform arguments
* @throws org.apache.maven.shared.release.ReleaseExecutionException if there is a problem performing the release
* @throws org.apache.maven.shared.release.ReleaseFailureException if there is a problem performing the release
* @since 2.3
*/
void perform(ReleasePerformRequest performRequest) throws ReleaseExecutionException, ReleaseFailureException;
/**
* Clean a release.
*
* @param cleanRequest all clean arguments
* @throws org.apache.maven.shared.release.ReleaseFailureException if exception when releasing
* @since 2.3
*/
void clean(ReleaseCleanRequest cleanRequest) throws ReleaseFailureException;
/**
* Rollback changes made by the previous release
*
* @param rollbackRequest all rollback arguments
* @throws org.apache.maven.shared.release.ReleaseExecutionException if there is a problem during release rollback
* @throws org.apache.maven.shared.release.ReleaseFailureException if there is a problem during release rollback
* @since 2.3
*/
void rollback(ReleaseRollbackRequest rollbackRequest) throws ReleaseExecutionException, ReleaseFailureException;
/**
* Branch a project
*
* @param branchRequest all branch arguments
* @throws org.apache.maven.shared.release.ReleaseExecutionException if there is a problem during release branch
* @throws org.apache.maven.shared.release.ReleaseFailureException if there is a problem during release branch
* @since 2.3
*/
void branch(ReleaseBranchRequest branchRequest) throws ReleaseExecutionException, ReleaseFailureException;
/**
* Update version numbers for a project
*
* @param updateVersionsRequest all update versions arguments
* @throws org.apache.maven.shared.release.ReleaseExecutionException if there is a problem during update versions
* @throws org.apache.maven.shared.release.ReleaseFailureException if there is a problem during update versions
* @since 2.3
*/
void updateVersions(ReleaseUpdateVersionsRequest updateVersionsRequest)
throws ReleaseExecutionException, ReleaseFailureException;
}