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

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

Go to download

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