com.amashchenko.maven.plugin.gitflow.GitFlowFeatureStartMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gitflow-maven-plugin Show documentation
Show all versions of gitflow-maven-plugin Show documentation
The Git-Flow Maven Plugin supports various Git workflows, including Vincent Driessen's successful Git branching model and GitHub Flow. This plugin runs Git and Maven commands from the command line. Supports Eclipse Plugins build with Tycho.
/*
* Copyright 2014-2017 Aleksandr Mashchenko.
*
* 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.
*/
package com.amashchenko.maven.plugin.gitflow;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import org.apache.maven.shared.release.versions.VersionParseException;
import org.codehaus.plexus.components.interactivity.PrompterException;
import org.codehaus.plexus.util.StringUtils;
import org.codehaus.plexus.util.cli.CommandLineException;
/**
* The git flow feature start mojo.
*
*/
@Mojo(name = "feature-start", aggregator = true)
public class GitFlowFeatureStartMojo extends AbstractGitFlowMojo {
/**
* Whether to skip changing project version. Default is false
* (the feature name will be appended to project version).
*
* @since 1.0.5
*/
@Parameter(property = "skipFeatureVersion", defaultValue = "false")
private boolean skipFeatureVersion = false;
/**
* Regex pattern to enforce naming of the feature branches. Doesn't have
* effect if not set or blank.
*
* @since 1.5.0
*/
@Parameter
private String featureNamePattern;
/** {@inheritDoc} */
@Override
public void execute() throws MojoExecutionException, MojoFailureException {
try {
// set git flow configuration
initGitFlowConfig();
// check uncommitted changes
checkUncommittedChanges();
// fetch and check remote
if (fetchRemote) {
gitFetchRemoteAndCompare(gitFlowConfig.getDevelopmentBranch());
}
String featureName = null;
try {
while (StringUtils.isBlank(featureName)) {
featureName = prompter
.prompt("What is a name of feature branch? "
+ gitFlowConfig.getFeatureBranchPrefix());
if (validBranchName(featureName)) {
if (StringUtils.isNotBlank(featureNamePattern)
&& !featureName.matches(featureNamePattern)) {
getLog().info(
"The name of the branch doesn't match '"
+ featureNamePattern + "'.");
featureName = null;
}
} else {
getLog().info("The name of the branch is not valid.");
featureName = null;
}
}
} catch (PrompterException e) {
getLog().error(e);
}
featureName = StringUtils.deleteWhitespace(featureName);
// git for-each-ref refs/heads/feature/...
final boolean featureBranchExists = gitCheckBranchExists(gitFlowConfig
.getFeatureBranchPrefix() + featureName);
if (featureBranchExists) {
throw new MojoFailureException(
"Feature branch with that name already exists. Cannot start feature.");
}
// git checkout -b ... develop
gitCreateAndCheckout(gitFlowConfig.getFeatureBranchPrefix()
+ featureName, gitFlowConfig.getDevelopmentBranch());
if (!skipFeatureVersion && !tychoBuild) {
// get current project version from pom
final String currentVersion = getCurrentProjectVersion();
final String version = new GitFlowVersionInfo(currentVersion)
.featureVersion(featureName);
if (StringUtils.isNotBlank(version)) {
// mvn versions:set -DnewVersion=...
// -DgenerateBackupPoms=false
mvnSetVersions(version);
// git commit -a -m updating versions for feature branch
gitCommit(commitMessages.getFeatureStartMessage());
}
}
if (installProject) {
// mvn clean install
mvnCleanInstall();
}
} catch (CommandLineException e) {
getLog().error(e);
} catch (VersionParseException e) {
getLog().error(e);
}
}
}