ch.acanda.maven.coan.checkstyle.CheckstyleAnalysis Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of code-analysis-maven-plugin Show documentation
Show all versions of code-analysis-maven-plugin Show documentation
The Code Analysis Maven Plugin runs several static analysis tools to check
your code for bugs, design and formatting problems.
package ch.acanda.maven.coan.checkstyle;
import ch.acanda.maven.coan.Analysis;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
import org.apache.maven.project.MavenProject;
import java.util.List;
@RequiredArgsConstructor
class CheckstyleAnalysis implements Analysis {
@Getter
private final MavenProject project;
@Getter
private final List issues;
@Override
public String getToolName() {
return "Checkstyle";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy