com.atlassian.maven.plugins.jgitflow.mojo.BuildNumberMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jgitflow-maven-plugin Show documentation
Show all versions of jgitflow-maven-plugin Show documentation
A maven plugin to support doing git-flow releases
The newest version!
package com.atlassian.maven.plugins.jgitflow.mojo;
/*-
* #%L
* JGitFlow :: Maven Plugin
* %%
* Copyright (C) 2017 Atlassian Pty, LTD, Ultreia.io
* %%
* Licensed 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.
* #L%
*/
import java.util.List;
import java.util.Map;
import com.atlassian.jgitflow.core.JGitFlow;
import com.atlassian.jgitflow.core.exception.JGitFlowException;
import com.atlassian.maven.plugins.jgitflow.ReleaseContext;
import com.atlassian.maven.plugins.jgitflow.exception.MavenJGitFlowException;
import com.atlassian.maven.plugins.jgitflow.exception.ProjectRewriteException;
import com.atlassian.maven.plugins.jgitflow.helper.JGitFlowSetupHelper;
import com.atlassian.maven.plugins.jgitflow.helper.ProjectHelper;
import com.atlassian.maven.plugins.jgitflow.provider.*;
import com.atlassian.maven.plugins.jgitflow.rewrite.ProjectChangeset;
import com.atlassian.maven.plugins.jgitflow.rewrite.ProjectRewriter;
import com.google.common.base.Function;
import com.google.common.collect.Maps;
import org.apache.commons.lang.StringUtils;
import org.apache.maven.execution.MavenSession;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.Component;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import org.apache.maven.project.MavenProject;
import static com.atlassian.maven.plugins.jgitflow.rewrite.ArtifactReleaseVersionChange.artifactReleaseVersionChange;
import static com.atlassian.maven.plugins.jgitflow.rewrite.ParentReleaseVersionChange.parentReleaseVersionChange;
import static com.atlassian.maven.plugins.jgitflow.rewrite.ProjectReleaseVersionChange.projectReleaseVersionChange;
@Mojo(name = "build-number", aggregator = true)
public class BuildNumberMojo extends AbstractJGitFlowMojo
{
/**
* The build number to tack on to the pom version during the build.
*/
@Parameter(property = "buildNumber")
private String buildNumber;
/**
* Whether, for modules which refer to each other within the same multi-module build, to update dependencies version to the release version.
*/
@Parameter(defaultValue = "true", property = "updateDependencies")
private boolean updateDependencies = true;
/**
* The suffix to use after the version number but before the build number
*/
@Parameter(defaultValue = "-build", property = "buildNumberVersionSuffix")
private String buildNumberVersionSuffix = "-build";
@Component
protected JGitFlowProvider jGitFlowProvider;
@Component
protected ProjectHelper projectHelper;
@Component
protected ProjectRewriter projectRewriter;
@Component
protected VersionProvider versionProvider;
@Component
protected ContextProvider contextProvider;
@Component
protected MavenSessionProvider sessionProvider;
@Component
protected ReactorProjectsProvider projectsProvider;
@Component
protected JGitFlowSetupHelper setupHelper;
@Override
public void execute() throws MojoExecutionException, MojoFailureException
{
List reactorProjects = getReactorProjects();
try
{
runPreflight(reactorProjects);
}
catch (Exception e)
{
throw new MojoExecutionException("Error setting up build number mojo: " + e.getMessage(), e);
}
Map originalVersions = versionProvider.getOriginalVersions(ProjectCacheKey.BUILD_NUMBER, reactorProjects);
Map featureSuffixedVersions = Maps.transformValues(originalVersions, new Function()
{
@Override
public String apply(String input)
{
if (input.endsWith("-SNAPSHOT"))
{
return StringUtils.substringBeforeLast(input, "-SNAPSHOT") + buildNumberVersionSuffix + buildNumber;
}
else
{
return input;
}
}
});
for (MavenProject project : reactorProjects)
{
ProjectChangeset changes = new ProjectChangeset()
.with(parentReleaseVersionChange(originalVersions, featureSuffixedVersions, false))
.with(projectReleaseVersionChange(featureSuffixedVersions, false))
.with(artifactReleaseVersionChange(originalVersions, featureSuffixedVersions, updateDependencies));
try
{
projectRewriter.applyChanges(project, changes);
}
catch (ProjectRewriteException e)
{
throw new MojoExecutionException("Error updating poms with build numbers versions", e);
}
}
}
protected void setupProviders(MavenSession session, List projects)
{
contextProvider.setContext(new ReleaseContext(getBasedir())
.setAlwaysUpdateOrigin(alwaysUpdateOrigin)
.setDefaultOriginUrl(defaultOriginUrl)
.setEnableSshAgent(enableSshAgent)
.setUseReleaseProfile(false)
.setUsername(username)
.setPassword(password)
.setEol(eol)
.setAllowRemote(isRemoteAllowed()));
sessionProvider.setSession(session);
projectsProvider.setReactorProjects(projects);
}
public void runPreflight(List reactorProjects) throws JGitFlowException, MavenJGitFlowException
{
setupProviders(session, reactorProjects);
setupHelper.setupCredentialProviders();
JGitFlow flow = jGitFlowProvider.gitFlow();
setupHelper.runCommonSetup();
}
}