<profiles>
<profile>
<id>disable-checkstyle</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
특정 플러그인 생략하고 싶을때 skip true로 주면 된다.
반응형
'개발 > java' 카테고리의 다른 글
spring. 자체인증서 통해 내 로컬에서 https 설정 (+) 내 로컬 host 변경 (0) | 2024.02.15 |
---|---|
java. pxix path buing failed (0) | 2024.02.13 |
jsp. 주석 종류 (클라이언트 미노출하고 싶다면 <%-- --%>) (0) | 2023.10.24 |
spring. component vs bean 차이점 (0) | 2023.07.27 |
spring. 클래스 레벨에 위치한 변수의 생성 시점 (0) | 2023.05.24 |