Skip to content

Commit

Permalink
Add option to not print markers to the maven log
Browse files Browse the repository at this point in the history
  • Loading branch information
laeubi committed Jan 15, 2024
1 parent 82dd36b commit 44fecdd
Showing 1 changed file with 14 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugin.logging.Log;
import org.apache.maven.plugins.annotations.Component;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
Expand Down Expand Up @@ -74,6 +75,9 @@ public class EclipseBuildMojo extends AbstractMojo {
@Parameter(defaultValue = "true", property = "tycho.eclipsebuild.failOnError")
private boolean failOnError;

@Parameter(defaultValue = "true", property = "tycho.eclipsebuild.printMarker")
private boolean printMarker;

@Parameter
private List<String> bundles;

Expand Down Expand Up @@ -125,13 +129,16 @@ public void execute() throws MojoExecutionException, MojoFailureException {
}
EclipseBuildResult result = framework
.execute(new EclipseBuild(project.getBasedir().toPath(), debug));
result.markers().filter(marker -> marker.getAttribute(IMarker.SEVERITY, -1) == IMarker.SEVERITY_INFO)
.forEach(info -> printMarker(info, result, getLog()::info));
result.markers().filter(marker -> marker.getAttribute(IMarker.SEVERITY, -1) == IMarker.SEVERITY_WARNING)
.forEach(warn -> printMarker(warn, result, getLog()::warn));
List<IMarker> errors = result.markers()
.filter(marker -> marker.getAttribute(IMarker.SEVERITY, -1) == IMarker.SEVERITY_ERROR).toList();
errors.forEach(error -> printMarker(error, result, getLog()::error));
List<IMarker> errors = result.markers()
.filter(marker -> marker.getAttribute(IMarker.SEVERITY, -1) == IMarker.SEVERITY_ERROR).toList();
if (printMarker) {
Log log = getLog();
result.markers().filter(marker -> marker.getAttribute(IMarker.SEVERITY, -1) == IMarker.SEVERITY_INFO)
.forEach(info -> printMarker(info, result, log::info));
result.markers().filter(marker -> marker.getAttribute(IMarker.SEVERITY, -1) == IMarker.SEVERITY_WARNING)
.forEach(warn -> printMarker(warn, result, log::warn));
errors.forEach(error -> printMarker(error, result, log::error));
}
if (failOnError && errors.size() > 0) {
String msg = errors.stream().map(problem -> asString(problem, result))
.collect(Collectors.joining(System.lineSeparator()));
Expand Down

0 comments on commit 44fecdd

Please sign in to comment.