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>-->
위 부분 디펜던시 추가했으나 동일한 에러가 발생했다는 점 참고바란다.
'에러모음' 카테고리의 다른 글
ConversionFailedException (0) | 2023.02.14 |
---|---|
오라클 19c 설치 이후 dbeaver 연결 에러 (0) | 2023.02.08 |
배포관련 jar 에러 (manifest 속성이 없습니다) (0) | 2022.11.22 |
LocaldateTime 잘못 들어오는 에러 해결 (0) | 2022.11.02 |
Validation failed for query for method public abstract (0) | 2022.09.01 |