com.lewisd.maven.lint.Results 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;
import java.util.List;
public class Results {
private final List violations;
public Results(final List violations) {
this.violations = violations;
}
public List getViolations() {
return violations;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy