작성
·
474
0
컴파일 시 아래와 같은 에러가 발생하는데 해결에 어려움이 있습니다. 도움부탁드립니다.
"C:\Program Files\Java\jdk-11.0.17\bin\java.exe" -Dmaven.multiModuleProjectDirectory=D:\SpringPrj\cryptoWebService "-Dmaven.home=C:\Program Files\JetBrains\IntelliJ IDEA 2020.3.1\plugins\maven\lib\maven3" "-Dclassworlds.conf=C:\Program Files\JetBrains\IntelliJ IDEA 2020.3.1\plugins\maven\lib\maven3\bin\m2.conf" "-Dmaven.ext.class.path=C:\Program Files\JetBrains\IntelliJ IDEA 2020.3.1\plugins\maven\lib\maven-event-listener.jar" "-javaagent:C:\Program Files\JetBrains\IntelliJ IDEA 2020.3.1\lib\idea_rt.jar=49589:C:\Program Files\JetBrains\IntelliJ IDEA 2020.3.1\bin" -Dfile.encoding=UTF-8 -classpath "C:\Program Files\JetBrains\IntelliJ IDEA 2020.3.1\plugins\maven\lib\maven3\boot\plexus-classworlds-2.6.0.jar;C:\Program Files\JetBrains\IntelliJ IDEA 2020.3.1\plugins\maven\lib\maven3\boot\plexus-classworlds.license" org.codehaus.classworlds.Launcher -Didea.version=2020.3.1 compile
[INFO] Scanning for projects...
[INFO]
[INFO] ----------------------< com.studyolle:studyolle >-----------------------
[INFO] Building studyolle 0.0.1-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- apt-maven-plugin:1.1.3:process (default) @ studyolle ---
[INFO]
[INFO] --- frontend-maven-plugin:1.8.0:install-node-and-npm (install node and npm) @ studyolle ---
[INFO] Installing node version v4.6.0
[INFO] Unpacking C:\Users\sonth\.m2\repository\com\github\eirslett\node\4.6.0\node-4.6.0-win-x64.zip into D:\SpringPrj\cryptoWebService\src\main\resources\static\node\tmp
[INFO] Copying node binary from D:\SpringPrj\cryptoWebService\src\main\resources\static\node\tmp\node-v4.6.0-win-x64\node.exe to D:\SpringPrj\cryptoWebService\src\main\resources\static\node\node.exe
[INFO] Installed node locally.
[INFO]
[INFO] --- frontend-maven-plugin:1.8.0:npm (npm install) @ studyolle ---
[INFO] Running 'npm install' in D:\SpringPrj\cryptoWebService\src\main\resources\static
[INFO] npm WARN package.json static@1.0.0 No description
[INFO] npm WARN package.json static@1.0.0 No repository field.
[INFO] npm WARN package.json static@1.0.0 No README data
[INFO]
[INFO] --- maven-resources-plugin:3.2.0:resources (default-resources) @ studyolle ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Using 'UTF-8' encoding to copy filtered properties files.
[INFO] Copying 2 resources
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 35.495 s
[INFO] Finished at: 2023-10-31T22:25:42+09:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-resources) on project studyolle: Input length = 1 -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
Process finished with exit code 1
답변 1
0
안녕하세요 이원준님, 인프런 AI 인턴이에요.
에러 메시지를 보니 Maven 빌드 중에 문제가 발생했는 것 같습니다. 에러 내용에서는 Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-resources) on project studyolle: Input length = 1
라고 나와 있습니다.
이러한 경우, 일반적으로 다음과 같은 접근 방법을 시도해 볼 수 있습니다:
Maven 캐시 삭제: Maven 캐시가 손상되어 Build에 문제가 발생할 수 있습니다. .m2
디렉토리 내의 .repository
폴더를 삭제한 뒤 다시 빌드해 보세요.
Maven 버전 확인: Maven 버전 간 호환성 문제가 발생할 수 있습니다. 프로젝트에 사용되는 Maven 버전과 pom.xml 파일의 Maven 플러그인 설정을 확인하여 호환성 문제가 없는지 확인해 보세요.
Maven 설정 파일 검토: 프로젝트에 사용되는 Maven 설정 파일 (settings.xml)을 확인하여 올바르게 설정되어 있는지, 환경 변수 (JAVA_HOME 등)가 올바르게 설정되어 있는지 확인해 보세요.
만약 위의 방법들로 문제가 해결되지 않는다면, 더 자세한 에러 로그를 분석하거나 Maven 빌드 과정 중 로깅을 활성화해 문제의 원인을 찾아 해결할 수 있을 것입니다. 도움이 되셨기를 바랍니다.