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

ch.acanda.maven.coan.Inspection Maven / Gradle / Ivy

Go to download

The Code Analysis Maven Plugin runs several static analysis tools to check your code for bugs, design and formatting problems.

There is a newer version: 1.13.0
Show newest version
package ch.acanda.maven.coan;

import org.apache.maven.project.MavenProject;

import java.util.List;

public interface Inspection {

    String toolName();

    default boolean foundIssues() {
        return !issues().isEmpty();
    }

    @SuppressWarnings("java:S1452")
    List issues();

    default int getNumberOfIssues() {
        return issues().size();
    }

    MavenProject project();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy