반응형

들어가기 전

체크스타일 대상이 될 코드 작성

public class Calculator {
    private static final String[] AAA = {
            "AAA",
            "BBB"
    };

    public int add(int a, int b) {
        return a + b;
    }
}

pom.xml 파일 설정

<properties>
    <checkstyle.config.location>${basedir}/google_checks.xml</checkstyle.config.location>
</properties>

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-checkstyle-plugin</artifactId>
            <version>3.1.1</version>     
        </plugin>
    </plugins>
</build>

명령어 수행

mvn clean checkstyle:checkstyle

결과 확인

  • <프로젝트>/target/site/checkstyle.html 파일을 열어 결과 확인
  • 결과 이미지

반응형

+ Recent posts