All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lewisd.maven.lint.ResultCollector Maven / Gradle / Ivy

package com.lewisd.maven.lint;

import java.util.List;

import org.apache.maven.model.InputLocation;
import org.apache.maven.project.MavenProject;

public interface ResultCollector {

	void addViolation(MavenProject mavenProject, Rule rule, String message, InputLocation inputLocation);

	boolean hasViolations();

	List getViolations();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy