2011-02-25 4 views
15

넥서스 원격 저장소에 내 항아리를 배치 설치 : 내 항아리 (유물) 인 넥서스 저장소에 설치하기를 원하는 설치 서버 (현재 설치되어있는 jar 파일은 로컬 시스템 저장소에 위치 함)에 있습니다. 어떻게 할 수 있습니까?MVN : 내가 MVN 실행하면</p> <p>을 (일식 m2는) 내가 이클립스 받는다는을 사용하고

enter image description here

는 난이 아닌 로컬 저장소에 배포 할 mvn deploy를 사용하는 것,

답변

22

일반적으로 내 로컬 저장소 주소로이 변경되었습니다.

maven settings.xml 또는 프로젝트 POM에서 리포를 구성해야합니다.

우리는 항상 동일한 내부 repo를 사용하기 때문에 Maven settings.xml, 더 정확하게는 "profiles"섹션에서이 작업을 수행했습니다.

<profiles> 
    <profile> 
     <id>artifactory</id> 
     <repositories> 
     <repository> 
      <id>central</id> 
      <name>libs-releases</name> 
      <url>http://repo.example.com/libs-releases</url> 
      <snapshots> 
      <enabled>false</enabled> 
      </snapshots> 
     </repository> 
     <repository> 
      <id>snapshots</id> 
      <name>libs-snapshots</name> 
      <url>http://repo.example.com/libs-snapshots</url> 
      <snapshots /> 
     </repository> 
     </repositories> 
     <pluginRepositories> 
     <pluginRepository> 
      <id>central</id> 
      <name>plugins-releases</name> 
      <url>http://repo.example.com/plugins-releases</url> 
      <snapshots><enabled>false</enabled></snapshots> 
     </pluginRepository> 
     </pluginRepositories> 
    </profile> 
    </profiles> 
    <activeProfiles> 
    <activeProfile>artifactory</activeProfile> 
    </activeProfiles> 
: 여기

참조에 대한 내 설정이다