Back-End/에러와의 전쟁

[maven build 실패 문제] Please refer to dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and [date].dumpstream.

얄루몬 2023. 6. 19. 14:18

[문제 상황]

Please refer to dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and [date].dumpstream.

- 아마도 유닛 테스트 작업에 문제가 있을 때 빌드를 못하는 문제인데 이 문제를 아래와 같이 설정해서 넘길 수 있다.

- 테스트 작업을 안 하고 넘어가는 설정이라고 알고 있어서 이는 근본적인 해결책이 아니라고 하는데 일단은 빌드 하는게 중요하니까 진행하도록 해본다.

👉 https://stackoverflow.com/questions/71282385/how-to-fix-dump-files-if-any-exist-date-dump-date-jvmrunn-dump-and-dat

 

How to fix dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and [date].dumpstream. while using maven surefire plugin

I got the below error while executing the command mvn clean test. Even though I changed the versions of the surefire plugin but still I'm facing the same error. Error Log: [ERROR] Failed to execute...

stackoverflow.com

[해결 방법]

pom.xml에 아래와 같이 플러그인 추가

<build> 
    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
        <skipTests>true</skipTests>
        </configuration>
    </plugin>
</plugin>