[개요]
Intellij IDEA에서 SpringBoot 프로젝트 빌드 시 아래와 같은 에러메시지가 발생했습니다.
Error running 'All in 프로젝트명': Command line is too long. Shorten command line for All in 프로젝트명 or also for JUnit default configuration.
[해결 방법]
프로젝트 폴더 중 idea라는 폴더가 있는데 그 폴더 내 workspace.xml을 아래와 같이 수정하면 됩니다.
...
{중략}
<component name="PropertiesComponent">
...
{중략}
<!-- 아래 라인을 추가 --->
<property name="dynamic.classpath" value="true" />
</component>
{중략}
...
즉, PropertiesComponent 컴포넌트 밑에 <property name="dynamic.classpath" value="true" /> 라인을 추가하면 빌드가 성공적으로 됩니다.
[출처]
* 회사 프로젝트라 스크린샷을 찍을 수 없었습니다.
반응형