Spring
[String] mvnw 빌스 시 TEST SKIP하기
MOMOBOB
2021. 2. 8. 23:09
반응형
pom.xml에 아래 플러그인 추가
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
반응형