com.github.danielflower.mavenplugins.gitlog.GenerateReport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gitlog-maven-plugin Show documentation
Show all versions of gitlog-maven-plugin Show documentation
Generates a changelog based on commits to a git repository in text and HTML format showing the changes
that are included in each version. A possible use of this is to include these changelogs when packaging your
maven project so that you have an accurate list of commits that the current package includes.
The newest version!
package com.github.danielflower.mavenplugins.gitlog;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.Mojo;
import java.io.File;
import java.util.Locale;
import org.apache.maven.reporting.MavenReport;
import org.apache.maven.reporting.MavenReportException;
import org.codehaus.doxia.sink.Sink;
/**
* Goal which generates a changelog based on commits made to the current git repo.
*/
@Mojo(
name = "report"
)
public class GenerateReport extends GenerateMojo implements MavenReport {
@Override
public void generate(org.apache.maven.doxia.sink.Sink sink, Locale locale) throws MavenReportException {
try {
execute();
} catch (MojoExecutionException ex) {
getLog().error(ex.getMessage(), ex);
} catch (MojoFailureException ex) {
getLog().error(ex.getMessage(), ex);
}
}
@Override
public String getOutputName()
{
return "gitlog";
}
@Override
public String getCategoryName()
{
return CATEGORY_PROJECT_REPORTS;
}
@Override
public String getName(Locale locale)
{
return "GitLog";
}
@Override
public String getDescription(Locale locale)
{
return "Generate changelog from git SCM.";
}
/**
* When running as a reporting plugin, the output directory is fixed, set by the reporting cycle.
*/
@Override
public void setReportOutputDirectory(File file)
{
outputDirectory = file;
}
@Override
public File getReportOutputDirectory()
{
return outputDirectory;
}
@Override
public boolean isExternalReport()
{
return true;
}
@Override
public boolean canGenerateReport()
{
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy