본문 바로가기

에러모음

query dsl 설정 및 에러정리

https://todayproject.tistory.com/entry/8

 

[JPA] QueryDsl Maven 설정

QueryDSL이란 Querydsl 정적 타입을 이용해서 SQL과 같은 쿼리를 생성할 수 있도록 해 주는 프레임워크다. 문자열로 작성하거나 XML 파일에 쿼리를 작성하는 대신, Querydsl이 제공하는 플루언트(Fluent) API

todayproject.tistory.com

 

 

배포시에 아래와 같은 에러발생. 

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

출처: https://gonsday.tistory.com/51 [Gon's Day:티스토리]

 

 

<plugin>
   <groupId>org.apache.maven.plugins</groupId>
   <artifactId>maven-surefire-plugin</artifactId>
   <version>${maven-surefire-plugin.version}</version>
   <configuration>
      <skipTests>true</skipTests>
   </configuration>
</plugin>

해당 플러그인 추가하니 해결되었다.

 


<!--      <dependency>-->
<!--         <groupId>org.apache.maven.plugins</groupId>-->
<!--         <artifactId>maven-surefire-report-plugin</artifactId>-->
<!--         <version>2.18.1</version>-->
<!--      </dependency>-->

위 부분 디펜던시 추가했으나 동일한 에러가 발생했다는 점 참고바란다.