폐쇠된 환경에서의 Nexus 설정 관련 문의드립니다.
- 작성자 :
- 김*연
- 작성일 :
- 2013-01-02 13:57:20
- 조회수 :
- 1,416
- 구분 :
- 개발환경
- 진행상태 :
- 완료
Q
안녕하세요.
인터넷이 폐쇠된 환경에서 Nexus 서버를 구축하고, 해당 Nexus 서버에서만
Library를 다운로드 받도록 환경을 구성하려고 합니다.
eGovFrame 관련 Jar 파일과, Spring관련 Jar 파일등 Dependency되는 파일들을
모두 Nexus 서버에 올려두었는데 Plugin 쪽에서 오류가 발생하고 있습니다.
확인해보니 Plugin에서 사용하는 Jar 파일들을 웹을 통해서 가져오는것 같은데
따로 설정할수 있는 방법이 있는지 궁금합니다.
인터넷이 폐쇠된 환경에서 Nexus 서버를 구축하고, 해당 Nexus 서버에서만
Library를 다운로드 받도록 환경을 구성하려고 합니다.
eGovFrame 관련 Jar 파일과, Spring관련 Jar 파일등 Dependency되는 파일들을
모두 Nexus 서버에 올려두었는데 Plugin 쪽에서 오류가 발생하고 있습니다.
확인해보니 Plugin에서 사용하는 Jar 파일들을 웹을 통해서 가져오는것 같은데
따로 설정할수 있는 방법이 있는지 궁금합니다.
A
안녕하세요.. 김해연님..
maven 3에서는 plugin repository를 별도로 가지고 있어.. pom.xml 상에..
기존 <repositories />와는 별도로 <pluginRepositories />를 가지고 있습니다.
이 <pluginRepositories />의 주소를 구축하신 nexus 서버로 변경하시면 되실 것 같습니다.
<pluginRepositories>
<pluginRepository>
<id>central</id>
<name>Maven Plugin Repository</name>
<url>http://repo1.maven.org/maven2</url>
<layout>default</layout>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<updatePolicy>never</updatePolicy>
</releases>
</pluginRepository>
</pluginRepositories>
그럼.. 즐거운 하루되십시오.
감사합니다.
maven 3에서는 plugin repository를 별도로 가지고 있어.. pom.xml 상에..
기존 <repositories />와는 별도로 <pluginRepositories />를 가지고 있습니다.
이 <pluginRepositories />의 주소를 구축하신 nexus 서버로 변경하시면 되실 것 같습니다.
<pluginRepositories>
<pluginRepository>
<id>central</id>
<name>Maven Plugin Repository</name>
<url>http://repo1.maven.org/maven2</url>
<layout>default</layout>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<updatePolicy>never</updatePolicy>
</releases>
</pluginRepository>
</pluginRepositories>
그럼.. 즐거운 하루되십시오.
감사합니다.