添加新maven 公共repository

最近公司hadoop集羣準備升級到CHD4U6,要進行升級前的job測試。需要依賴一些新的公共jar包,比如:

  1. hadoop-annotations-2.0.0-cdh4.6.0.jar
  2. hadoop-auth-2.0.0-cdh4.6.0.jar
  3. hadoop-common-2.0.0-cdh4.6.0.jar

與之前的hadoop版本(chd3u5)依賴不同。但用nexus搭建的maven庫並沒有創建該公共repository代理。

       查得:http://www.cloudera.com/content/cloudera-content/cloudera-docs/CDH4/4.2.1/CDH4-Installation-Guide/cdh4ig_topic_31.html

       根據其中描述得到id:cloudera, remote storage location:https://repository.cloudera.com/artifactory/cloudera-repos/,於是創建代理。

      

       創建後編譯不行,看了下setting文件:

<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
                      http://maven.apache.org/xsd/settings-1.0.0.xsd">

  <proxies>
    <proxy>
      <id>normal</id>
      <active>true</active>
      <protocol>http</protocol>
	  <username>Deployment</username> 
      <host>10.16.1.240:8081/nexus</host>
      <!-- <port>80</port> -->
      <nonProxyHosts>10.16.1.240:8081/nexus</nonProxyHosts>
    </proxy>
  </proxies>

  <servers>
	<server>
      <id>releases</id>
	  <username>Deployment</username>
    </server>
	<server>
      <id>snapshots</id>
	  <username>Deployment</username>
    </server>
  </servers>

  <mirrors>
    <mirror>
      <!--This is used to direct the public snapshots repo in the 
          profile below over to a different nexus group -->
      <id>nexus-public-snapshots</id>
      <mirrorOf>public-snapshots</mirrorOf>
      <url>http://10.16.1.240:8081/nexus/content/groups/public-snapshots</url>
    </mirror>
<span style="color:#ff0000;">    <mirror>
      <!--This sends everything else to /public -->
      <id>nexus</id>
      <mirrorOf>*</mirrorOf>
      <url>http://10.16.1.240:8081/nexus/content/groups/public</url>
    </mirror></span>
  </mirrors>
  
  <profiles>
    <profile>
      <id>development</id>
      <repositories>
        <repository>
          <id>central</id>
          <url>http://central</url>
          <releases><enabled>true</enabled></releases>
          <snapshots><enabled>true</enabled></snapshots>
        </repository>
      </repositories>
     <pluginRepositories>
        <pluginRepository>
          <id>central</id>
          <url>http://central</url>
          <releases><enabled>true</enabled></releases>
          <snapshots><enabled>true</enabled></snapshots>
        </pluginRepository>
      </pluginRepositories>
    </profile>
    <profile>
      <!--this profile will allow snapshots to be searched when activated-->
      <id>public-snapshots</id>
      <repositories>
        <repository>
          <id>public-snapshots</id>
          <url>http://public-snapshots</url>
          <releases><enabled>false</enabled></releases>
          <snapshots><enabled>true</enabled></snapshots>
        </repository>
      </repositories>
     <pluginRepositories>
        <pluginRepository>
          <id>public-snapshots</id>
          <url>http://public-snapshots</url>
          <releases><enabled>false</enabled></releases>
          <snapshots><enabled>true</enabled></snapshots>
        </pluginRepository>
      </pluginRepositories>
    </profile>
  </profiles>
  <activeProfiles>
    <activeProfile>development</activeProfile>
  </activeProfiles>
</settings>


其中紅字部分可以看出指向了public這個group,於是在nexus中把剛創建的repository加入group。編譯ok。
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章