nexus 添加xx.jar和源文件xx-source.jar。利用maven,向eclipse导入源文件

 以管理员身份登录nexus后,点击左侧Repositories ---选择右侧3rd party ,然后点击Artifact Upload填写信息,上传jar文件或者source.jar。

 

上传jar文件时:Classifile 字段不填。上传源文件-sourece.jar时填写sources,即可以上传jar的源文件。

 

如下图

 nexus 添加xx.jar和源文件xx-source.jar。利用maven,向eclipse导入源文件_第1张图片

利用maven,导入eclipse,在maven的pom文件中添加:

<pluginManagement>
   <plugins>
    <plugin>
     <groupId>org.apache.maven.plugins</groupId>
     <artifactId>maven-eclipse-plugin</artifactId>
     <version>2.8</version>
     <configuration>
      <downloadSources>true</downloadSources>
     </configuration>
    </plugin>
   </plugins>
  </pluginManagement>

这样就可以下载jar的源文件,用mvn eclipse:eclipse,导入eclipse即可以查看源文件。


我的个人小站: 懒虫子      http://www.lanchongzi.com/

 

 

 

 

你可能感兴趣的:(nexus 添加xx.jar和源文件xx-source.jar。利用maven,向eclipse导入源文件)