[ Spring-Boot, JPA로 질문답변 게시판 구현 과정 ] - 메이븐 빌드 과정 질문드립니다~

2017-05-04 00:26

선생님 안녕하세요~ 유튜브로 좋은 강의 잘듣고 있습니다. 감사합니다~

사진을 첨부했는데 반복주기1에서 메이븐 빌드가 안되서요ㅠㅠ

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:2 .6:resources (default-resources) on project my-slipp-prac: Cannot create resourc e output directory: /home/mom/my-slipp-prac/target/classes -> [Help 1] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e swit ch. [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 rea d the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionE xception

    <dependency>
        <groupId>org.apache.maven.wagon</groupId>
        <artifactId>wagon-ssh</artifactId>
        <version>2.10</version>
    </dependency>   

혹시나 하고 디펜더씨를 추가해서 빌드 해봤지만 여전히 안되는군요ㅜㅜ

2개의 의견 from SLiPP

2017-05-05 05:29

에러 메시지를 보니 target/classes 디렉토리를 생성할 수 없다고 하네요.

maven-resources-plugin:2.5 - Cannot create resource output directory 글과 같이 3가지 원인이 있을 수 있겠네요.

  • Some other process is deleting this folder at the same time
  • You don't have permissions to access this folder
  • The folder is on a network share

접근 권한 이슈일 가능성이 높아보이네요. 디렉토리를 생성하고 삭제할 수 있는 권한이 있는지 확인해 보세요.

의견 추가하기

연관태그

← 목록으로