
com.lewisd.maven.lint.report.ReportWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lint-maven-plugin Show documentation
Show all versions of lint-maven-plugin Show documentation
Generates a report of suspicious/inconsistent POM elements, and optionally fails the build if violations are found.
The newest version!
package com.lewisd.maven.lint.report;
import java.io.File;
import java.io.IOException;
import java.util.List;
import org.apache.maven.project.MavenProject;
import com.lewisd.maven.lint.Violation;
public interface ReportWriter {
void writeResults(MavenProject mavenProject, List violations, File outputFile) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy