반응형
<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] 캐치 추가/제거 Annotation : @Cacheable, @CacheEvict + Redis 캐시 설정방법 (0) | 2025.03.12 |
---|---|
spring. 자체인증서 통해 내 로컬에서 https 설정 (+) 내 로컬 host 변경 (0) | 2024.02.15 |
java. pxix path buing failed (0) | 2024.02.13 |
jsp. 주석 종류 (클라이언트 미노출하고 싶다면 <%-- --%>) (1) | 2023.10.24 |
spring. component vs bean 차이점 (0) | 2023.07.27 |