com.github.danielflower.mavenplugins.release.BaseMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of multi-module-maven-release-plugin Show documentation
Show all versions of multi-module-maven-release-plugin Show documentation
A maven release plugin built for multi-maven-module git repositories allowing continuous deployment
package com.github.danielflower.mavenplugins.release;
import org.apache.maven.artifact.factory.ArtifactFactory;
import org.apache.maven.artifact.repository.ArtifactRepository;
import org.apache.maven.artifact.resolver.ArtifactResolver;
import org.apache.maven.model.Scm;
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.logging.Log;
import org.apache.maven.plugins.annotations.Component;
import org.apache.maven.plugins.annotations.Parameter;
import org.apache.maven.project.MavenProject;
import org.apache.maven.settings.Server;
import org.apache.maven.settings.Settings;
import org.eclipse.jgit.transport.JschConfigSessionFactory;
import java.util.List;
import static java.lang.String.format;
/**
* @author Roland Hauser [email protected]
*
*/
public abstract class BaseMojo extends AbstractMojo {
/**
* The Maven Project.
*/
@Parameter(property = "project", required = true, readonly = true, defaultValue = "${project}")
protected MavenProject project;
@Parameter(property = "projects", required = true, readonly = true, defaultValue = "${reactorProjects}")
protected List projects;
/**
*
* The build number to use in the release version. Given a snapshot version
* of "1.0-SNAPSHOT" and a buildNumber value of "2", the actual released
* version will be "1.0.2".
*
*
* By default, the plugin will automatically find a suitable build number.
* It will start at version 0 and increment this with each release.
*
*
* This can be specified using a command line parameter ("-DbuildNumber=2")
* or in this plugin's configuration.
*
*/
@Parameter(property = "buildNumber")
protected Long buildNumber;
/**
*
* Configures the version naming.
*
*/
@Parameter(property = "versionNamer")
protected VersionNamer versionNamer = new VersionNamer(".");
/**
* The modules to release, or no value to to release the project from the
* root pom, which is the default. The selected module plus any other
* modules it needs will be built and released also. When run from the
* command line, this can be a comma-separated list of module names.
*/
@Parameter(alias = "modulesToRelease", property = "modulesToRelease")
protected List modulesToRelease;
/**
* A module to force release on, even if no changes has been detected.
*/
@Parameter(alias = "forceRelease", property = "forceRelease")
protected List modulesToForceRelease;
/**
* Determines the action to take when no module changes are detected. Possible values:
* {@code ReleaseAll}, {@code ReleaseNone}, {@code FailBuild}
*/
@Parameter(alias = "noChangesAction", defaultValue="ReleaseAll", property = "noChangesAction")
protected NoChangesAction noChangesAction;
/**
* Used to look up Artifacts in the remote repository.
*/
@Component
protected ArtifactFactory factory;
/**
* Used to look up Artifacts in the remote repository.
*/
@Component
protected ArtifactResolver artifactResolver;
/**
* List of Remote Repositories used by the resolver
*/
@Parameter(property = "remoteRepositories", required = true, readonly = true, defaultValue = "${project.remoteArtifactRepositories}")
protected List remoteRepositories;
/**
* Location of the local repository.
*
*/
@Parameter(property = "localRepository", required = true, readonly = true, defaultValue = "${localRepository}")
protected ArtifactRepository localRepository;
@Parameter(property = "disableSshAgent")
private boolean disableSshAgent;
@Parameter(defaultValue = "${settings}", readonly = true, required = true)
private Settings settings;
/**
* If set, the identityFile and passphrase will be read from the Maven
* settings file.
*/
@Parameter(property = "serverId")
private String serverId;
/**
* If set, this file will be used to specify the known_hosts. This will
* override any default value.
*/
@Parameter(property = "knownHosts")
private String knownHosts;
/**
* Specifies the private key to be used.
*/
@Parameter(property = "privateKey")
private String privateKey;
/**
* Specifies the passphrase to be used with the identityFile specified.
*/
@Parameter(property = "passphrase")
private String passphrase;
/**
* Fetch tags from remote repository to determine the next build number. If
* false, then tags from the local repository will be used instead. Make
* sure they are up to date to avoid problems.
*/
@Parameter(alias = "pullTags", property = "pull", defaultValue = "true")
protected boolean pullTags;
final void setSettings(final Settings settings) {
this.settings = settings;
}
final Settings getSettings() {
return settings;
}
final void setServerId(final String serverId) {
this.serverId = serverId;
}
final void setKnownHosts(final String knownHosts) {
this.knownHosts = knownHosts;
}
final void setPrivateKey(final String privateKey) {
this.privateKey = privateKey;
}
final void setPassphrase(final String passphrase) {
this.passphrase = passphrase;
}
final void disableSshAgent() {
disableSshAgent = true;
}
protected final void configureJsch(final Log log) {
if (!disableSshAgent) {
if (serverId != null) {
final Server server = settings.getServer(serverId);
if (server != null) {
privateKey = privateKey == null ? server.getPrivateKey() : privateKey;
passphrase = passphrase == null ? server.getPassphrase() : passphrase;
} else {
log.warn(format("No server configuration in Maven settings found with id %s", serverId));
}
}
JschConfigSessionFactory.setInstance(new SshAgentSessionFactory(log, knownHosts, privateKey, passphrase));
}
}
static void printBigErrorMessageAndThrow(Log log, String terseMessage, List linesToLog) throws MojoExecutionException {
log.error("");
log.error("");
log.error("");
log.error("************************************");
log.error("Could not execute the release plugin");
log.error("************************************");
log.error("");
log.error("");
for (String line : linesToLog) {
log.error(line);
}
log.error("");
log.error("");
throw new MojoExecutionException(terseMessage);
}
protected static String getRemoteUrlOrNullIfNoneSet(Scm originalScm, Scm actualScm) throws ValidationException {
if (originalScm == null) {
// No scm was specified, so don't inherit from any parent poms as they are probably used in different git repos
return null;
}
// There is an SCM specified, so the actual SCM with derived values is used in case (so that variables etc are interpolated)
String remote = actualScm.getDeveloperConnection();
if (remote == null) {
remote = actualScm.getConnection();
}
if (remote == null) {
return null;
}
return GitHelper.scmUrlToRemote(remote);
}
}