com.atlassian.maven.plugins.jgitflow.manager.MavenJGitFlowConfigManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-jgitflow-plugin Show documentation
Show all versions of maven-jgitflow-plugin Show documentation
A plugin to support doing git-flow releases
The newest version!
package com.atlassian.maven.plugins.jgitflow.manager;
import java.io.IOException;
import com.atlassian.maven.plugins.jgitflow.MavenJGitFlowConfiguration;
import org.eclipse.jgit.api.Git;
/**
* @since version
*/
public interface MavenJGitFlowConfigManager
{
public static final String CONFIG_FILENAME = ".maven-jgitflow";
MavenJGitFlowConfiguration getConfiguration(Git git) throws IOException;
void saveConfiguration(MavenJGitFlowConfiguration newConfig, Git git) throws IOException;
}