maven 및 교육 관련 질문
- 작성자 :
- 최*철
- 작성일 :
- 2012-03-06 14:53:48
- 조회수 :
- 2,263
- 구분 :
- 기타
- 진행상태 :
- 완료
Q
로컬상에서 작업하기 위해서 답변 주신대로
offline을 true로 변경하여 작업을 진행하였습니다.
그랬더니 The repository system is offline but the artifact org.apache.maven.plugins:maven-resources-plugin:pom:2.4.3 is not available in the local repository. 이런식으로 에러가 발생하네요.
그리고 교육 신청을 하고 싶은데 6차까지 이미 마감이 된건 같은데
결원이 생기면 추가적으로 신청이 가능한지요?
그리고 7차 신청은 언제 받는지에 관한 답변 부탁드립니다.
offline을 true로 변경하여 작업을 진행하였습니다.
그랬더니 The repository system is offline but the artifact org.apache.maven.plugins:maven-resources-plugin:pom:2.4.3 is not available in the local repository. 이런식으로 에러가 발생하네요.
그리고 교육 신청을 하고 싶은데 6차까지 이미 마감이 된건 같은데
결원이 생기면 추가적으로 신청이 가능한지요?
그리고 7차 신청은 언제 받는지에 관한 답변 부탁드립니다.
A
안녕하세요.. 최용철님..
Maven 버전 3부터는 maven plugin에 대한 dependency 기존 <repositories/>에서 찾지 않고.. 별도의 <pluginRepositories> 부분에서 찾도록 되어 있어서 발생된 오류 같습니다.
pom.xml에.. <repositories> 다음에 다음과 같이 <pluginRepositories>를 지정해 보십시오..
(url 부분은 실제 사용하는 maven repository 위치)
<pluginRepositories>
<pluginRepository>
<id>local</id>
<url>file:///egovframe-2.0/maven/repository</url>
</pluginRepository>
</pluginRepositories>
그럼.. 즐거운 하루되십시오.
감사합니다.
Maven 버전 3부터는 maven plugin에 대한 dependency 기존 <repositories/>에서 찾지 않고.. 별도의 <pluginRepositories> 부분에서 찾도록 되어 있어서 발생된 오류 같습니다.
pom.xml에.. <repositories> 다음에 다음과 같이 <pluginRepositories>를 지정해 보십시오..
(url 부분은 실제 사용하는 maven repository 위치)
<pluginRepositories>
<pluginRepository>
<id>local</id>
<url>file:///egovframe-2.0/maven/repository</url>
</pluginRepository>
</pluginRepositories>
그럼.. 즐거운 하루되십시오.
감사합니다.