Skip navigation links
A C D E F G H I L M N P S T V 

A

AbstractGitFlowMojo - Class in com.amashchenko.maven.plugin.gitflow
Abstract git flow mojo.
AbstractGitFlowMojo() - Constructor for class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
 

C

checkSnapshotDependencies() - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
 
checkUncommittedChanges() - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Checks uncommitted changes.
com.amashchenko.maven.plugin.gitflow - package com.amashchenko.maven.plugin.gitflow
 
commitMessages - Variable in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Git commit messages.
CommitMessages - Class in com.amashchenko.maven.plugin.gitflow
Git commit messages.
CommitMessages() - Constructor for class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
consumeLine(String) - Method in class com.amashchenko.maven.plugin.gitflow.StringBufferStreamConsumer
 

D

digitsVersionInfo() - Method in class com.amashchenko.maven.plugin.gitflow.GitFlowVersionInfo
Returns a new GitFlowVersionInfo that holds only digits in the version.

E

execute() - Method in class com.amashchenko.maven.plugin.gitflow.GitFlowFeatureFinishMojo
execute() - Method in class com.amashchenko.maven.plugin.gitflow.GitFlowFeatureStartMojo
execute() - Method in class com.amashchenko.maven.plugin.gitflow.GitFlowHotfixFinishMojo
execute() - Method in class com.amashchenko.maven.plugin.gitflow.GitFlowHotfixStartMojo
execute() - Method in class com.amashchenko.maven.plugin.gitflow.GitFlowReleaseFinishMojo
execute() - Method in class com.amashchenko.maven.plugin.gitflow.GitFlowReleaseMojo
execute() - Method in class com.amashchenko.maven.plugin.gitflow.GitFlowReleaseStartMojo
execute() - Method in class com.amashchenko.maven.plugin.gitflow.GitFlowSupportStartMojo
execute() - Method in class com.amashchenko.maven.plugin.gitflow.HelpMojo

F

featureVersion(String) - Method in class com.amashchenko.maven.plugin.gitflow.GitFlowVersionInfo
Gets version with appended feature name.
fetchRemote - Variable in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Whether to fetch remote branch and compare it with the local one.

G

getCurrentProjectVersion() - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Gets current project version evaluating pom.xml This implementation takes care of version based on properties or other runtime evaluation needed.
getDevelopmentBranch() - Method in class com.amashchenko.maven.plugin.gitflow.GitFlowConfig
 
getFeatureBranchPrefix() - Method in class com.amashchenko.maven.plugin.gitflow.GitFlowConfig
 
getFeatureFinishMessage() - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
getFeatureStartMessage() - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
getHotfixBranchPrefix() - Method in class com.amashchenko.maven.plugin.gitflow.GitFlowConfig
 
getHotfixFinishMessage() - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
getHotfixStartMessage() - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
getHotfixVersionUpdateMessage() - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
getOrigin() - Method in class com.amashchenko.maven.plugin.gitflow.GitFlowConfig
 
getOutput() - Method in class com.amashchenko.maven.plugin.gitflow.StringBufferStreamConsumer
 
getProductionBranch() - Method in class com.amashchenko.maven.plugin.gitflow.GitFlowConfig
 
getReleaseBranchPrefix() - Method in class com.amashchenko.maven.plugin.gitflow.GitFlowConfig
 
getReleaseFinishDevMergeMessage() - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
getReleaseFinishMergeMessage() - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
getReleaseFinishMessage() - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
getReleaseStartMessage() - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
getReleaseVersionUpdateMessage() - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
getSupportBranchPrefix() - Method in class com.amashchenko.maven.plugin.gitflow.GitFlowConfig
 
getTagHotfixMessage() - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
getTagReleaseMessage() - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
getUpdateDevBackPreMergeStateMessage() - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
getUpdateDevToAvoidConflictsMessage() - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
getUpdateReleaseBackPreMergeStateMessage() - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
getUpdateReleaseToAvoidConflictsMessage() - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
getVersionTagPrefix() - Method in class com.amashchenko.maven.plugin.gitflow.GitFlowConfig
 
gitBranchDelete(String) - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Executes git branch -d.
gitBranchDeleteForce(String) - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Executes git branch -D.
gitCheckBranchExists(String) - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Checks if local branch with given name exists.
gitCheckout(String) - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Executes git checkout.
gitCheckTagExists(String) - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Checks if local tag with given name exists.
gitCommit(String) - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Executes git commit -a -m.
gitCommit(String, Map<String, String>) - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Executes git commit -a -m, replacing @{map.key} with map.value.
gitCreateAndCheckout(String, String) - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Executes git checkout -b.
gitCreateBranch(String, String) - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Executes git branch.
gitFetchRemoteAndCompare(String) - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Executes git fetch and compares local branch with the remote.
gitFetchRemoteAndCreate(String) - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Fetches and checkouts from remote if local branch doesn't exist.
gitFindBranches(String, boolean) - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Executes git for-each-ref with refname:short format.
gitFindLastTag() - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Executes git for-each-ref to get the last tag.
gitFindTags() - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Executes git for-each-ref to get all tags.
gitFlowConfig - Variable in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Git flow configuration.
GitFlowConfig - Class in com.amashchenko.maven.plugin.gitflow
Git flow configuration.
GitFlowConfig() - Constructor for class com.amashchenko.maven.plugin.gitflow.GitFlowConfig
Default constructor.
GitFlowFeatureFinishMojo - Class in com.amashchenko.maven.plugin.gitflow
The git flow feature finish mojo.
GitFlowFeatureFinishMojo() - Constructor for class com.amashchenko.maven.plugin.gitflow.GitFlowFeatureFinishMojo
 
GitFlowFeatureStartMojo - Class in com.amashchenko.maven.plugin.gitflow
The git flow feature start mojo.
GitFlowFeatureStartMojo() - Constructor for class com.amashchenko.maven.plugin.gitflow.GitFlowFeatureStartMojo
 
GitFlowHotfixFinishMojo - Class in com.amashchenko.maven.plugin.gitflow
The git flow hotfix finish mojo.
GitFlowHotfixFinishMojo() - Constructor for class com.amashchenko.maven.plugin.gitflow.GitFlowHotfixFinishMojo
 
GitFlowHotfixStartMojo - Class in com.amashchenko.maven.plugin.gitflow
The git flow hotfix start mojo.
GitFlowHotfixStartMojo() - Constructor for class com.amashchenko.maven.plugin.gitflow.GitFlowHotfixStartMojo
 
GitFlowReleaseFinishMojo - Class in com.amashchenko.maven.plugin.gitflow
The git flow release finish mojo.
GitFlowReleaseFinishMojo() - Constructor for class com.amashchenko.maven.plugin.gitflow.GitFlowReleaseFinishMojo
 
GitFlowReleaseMojo - Class in com.amashchenko.maven.plugin.gitflow
The git flow release mojo.
GitFlowReleaseMojo() - Constructor for class com.amashchenko.maven.plugin.gitflow.GitFlowReleaseMojo
 
GitFlowReleaseStartMojo - Class in com.amashchenko.maven.plugin.gitflow
The git flow release start mojo.
GitFlowReleaseStartMojo() - Constructor for class com.amashchenko.maven.plugin.gitflow.GitFlowReleaseStartMojo
 
GitFlowSupportStartMojo - Class in com.amashchenko.maven.plugin.gitflow
The git flow support start mojo.
GitFlowSupportStartMojo() - Constructor for class com.amashchenko.maven.plugin.gitflow.GitFlowSupportStartMojo
 
GitFlowVersionInfo - Class in com.amashchenko.maven.plugin.gitflow
Git flow VersionInfo implementation.
GitFlowVersionInfo(String) - Constructor for class com.amashchenko.maven.plugin.gitflow.GitFlowVersionInfo
 
gitMerge(String, boolean, boolean, boolean, String, Map<String, String>) - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Executes git rebase or git merge --ff-only or git merge --no-ff or git merge.
gitMergeNoff(String) - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Executes git merge --no-ff.
gitMergeSquash(String) - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Executes git merge --squash.
gitPush(String, boolean) - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Executes git push, optionally with the --follow-tags argument.
gitPushDelete(String) - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
 
gitTag(String, String, boolean, Map<String, String>) - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Executes git tag -a [-s] -m.

H

HelpMojo - Class in com.amashchenko.maven.plugin.gitflow
Display help information on gitflow-maven-plugin.
Call mvn gitflow:help -Ddetail=true -Dgoal=<goal-name> to display parameter details.
HelpMojo() - Constructor for class com.amashchenko.maven.plugin.gitflow.HelpMojo
 
hotfixVersion(boolean) - Method in class com.amashchenko.maven.plugin.gitflow.GitFlowVersionInfo
Gets next hotfix version.

I

initGitFlowConfig() - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Executes git config commands to set Git Flow configuration.
installProject - Variable in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Whether to call Maven install goal during the mojo execution.
isValidVersion(String) - Static method in class com.amashchenko.maven.plugin.gitflow.GitFlowVersionInfo
Validates version.

L

LS - Static variable in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
System line separator.

M

mavenSession - Variable in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Maven session.
mvnCleanInstall() - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Executes mvn clean install.
mvnCleanTest() - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Executes mvn clean test.
mvnRun(String) - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Executes Maven goals.
mvnSetVersions(String) - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Executes 'set' goal of versions-maven-plugin or 'set-version' of tycho-versions-plugin in case it is tycho build.

N

nextSnapshotVersion() - Method in class com.amashchenko.maven.plugin.gitflow.GitFlowVersionInfo
Gets next SNAPSHOT version.
nextSnapshotVersion(Integer) - Method in class com.amashchenko.maven.plugin.gitflow.GitFlowVersionInfo
Gets next SNAPSHOT version.
notSameProdDevName() - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Compares the production branch name with the development branch name.

P

prompter - Variable in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Default prompter.

S

setArgLine(String) - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
 
setDevelopmentBranch(String) - Method in class com.amashchenko.maven.plugin.gitflow.GitFlowConfig
 
setFeatureBranchPrefix(String) - Method in class com.amashchenko.maven.plugin.gitflow.GitFlowConfig
 
setFeatureFinishMessage(String) - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
setFeatureStartMessage(String) - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
setHotfixBranchPrefix(String) - Method in class com.amashchenko.maven.plugin.gitflow.GitFlowConfig
 
setHotfixFinishMessage(String) - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
setHotfixStartMessage(String) - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
setHotfixVersionUpdateMessage(String) - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
setOrigin(String) - Method in class com.amashchenko.maven.plugin.gitflow.GitFlowConfig
 
setProductionBranch(String) - Method in class com.amashchenko.maven.plugin.gitflow.GitFlowConfig
 
setReleaseBranchPrefix(String) - Method in class com.amashchenko.maven.plugin.gitflow.GitFlowConfig
 
setReleaseFinishDevMergeMessage(String) - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
setReleaseFinishMergeMessage(String) - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
setReleaseFinishMessage(String) - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
setReleaseStartMessage(String) - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
setReleaseVersionUpdateMessage(String) - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
setSupportBranchPrefix(String) - Method in class com.amashchenko.maven.plugin.gitflow.GitFlowConfig
 
setTagHotfixMessage(String) - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
setTagReleaseMessage(String) - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
settings - Variable in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Maven settings.
setUpdateDevBackPreMergeStateMessage(String) - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
setUpdateDevToAvoidConflictsMessage(String) - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
setUpdateDevToAvoidConflitsMessage(String) - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
Deprecated.
Use the correctly spelt updateDevToAvoidConflictsMessage instead
setUpdateReleaseBackPreMergeStateMessage(String) - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
setUpdateReleaseToAvoidConflictsMessage(String) - Method in class com.amashchenko.maven.plugin.gitflow.CommitMessages
 
setVersionTagPrefix(String) - Method in class com.amashchenko.maven.plugin.gitflow.GitFlowConfig
 
StringBufferStreamConsumer - Class in com.amashchenko.maven.plugin.gitflow
 
StringBufferStreamConsumer() - Constructor for class com.amashchenko.maven.plugin.gitflow.StringBufferStreamConsumer
 
StringBufferStreamConsumer(boolean) - Constructor for class com.amashchenko.maven.plugin.gitflow.StringBufferStreamConsumer
 

T

tychoBuild - Variable in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Whether this is Tycho build.

V

validateConfiguration(String...) - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Validates plugin configuration.
validBranchName(String) - Method in class com.amashchenko.maven.plugin.gitflow.AbstractGitFlowMojo
Checks if branch name is acceptable.
A C D E F G H I L M N P S T V 
Skip navigation links

Copyright © 2014–2019. All rights reserved.