`

nexus上传了jar包.通过maven引用当前jar,不能取得jar的依赖

 
阅读更多

上传jar包到nexus私服

发表于10个月前(2014-08-01 14:07)   阅读(3889) | 评论(2) 15人收藏此文章, 我要收藏
0

大约十一点零八发,秒杀云主机赢P8手机

摘要 通过网页和maven两种方式,上传本地的jar到nexus私服,以及引用jar时,自动引用依赖

1通过网页上传

这种方法只是上传了jar包。通过maven引用当前jar,不能取得jar的依赖

 

from pom的方式,选择pom文件,以及jar。通过maven引入jar时,会自动加载jar的依赖

 

2通过maven的方式depoly

maven的conf/setting.xml 配置nexus私服的管理账号

在servers标签下添加server

1
2
3
4
5
   <server>
      <id>nexus-snapshots</id>
      <username>repouser</username>
      <password>repopwd</password>
    </server>

id可自己定义一个名称  以及私服的管理管的账号密码

在mirrors和profiles下配置nexus私服

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<mirrors>
    <mirror>
      <!--This sends everything else to /public -->
      <id>nexus</id>
      <mirrorOf>*</mirrorOf>
      <url>http://192.168.10.8:18080/nexus/content/repositories/releases/</url>
    </mirror>
  </mirrors>
  <profiles>
    <profile>
      <id>nexus</id>
      <!--Enable snapshots for the built in central repo to direct -->
      <!--all requests to nexus via the mirror -->
      <repositories
        <repository
            <id>nexus</id
            <name>local private nexus</name
            <url>http://192.168.10.8:18080/nexus/content/groups/public</url
            <releases><enabled>true</enabled><updatePolicy>always</updatePolicy>
            <checksumPolicy>warn</checksumPolicy></releases
            <snapshots><enabled>false</enabled></snapshots
        </repository>        
      </repositories
      <pluginRepositories
        <pluginRepository
            <id>nexus</id
            <name>local private nexus</name
            <url>http://192.168.10.8:18080/nexus/content/groups/public</url
            <releases><enabled>true</enabled><updatePolicy>always</updatePolicy>
            <checksumPolicy>warn</checksumPolicy></releases
            <snapshots><enabled>false</enabled></snapshots
        </pluginRepository>        
       </pluginRepositories
    </profile>
  </profiles>
  <activeProfiles>
    <!--make the profile active all the time -->
    <activeProfile>nexus</activeProfile>
  </activeProfiles>

在项目的pom.xml中配置

1
2
3
4
5
6
7
8
9
10
11
12
 <distributionManagement>
        <repository>
            <id>nexus-releases</id>
            <name>Nexus Release Repository</name>
            <url>http://192.168.10.8:18080/nexus/content/repositories/releases/</url>
        </repository>
        <snapshotRepository>
            <id>nexus-snapshots</id>
            <name>Nexus Snapshot Repository</name>
            <url>http://192.168.10.8:18080/nexus/content/repositories/snapshots/</url>
        </snapshotRepository>
    </distributionManagement>

id与settings.xml中的server的id对应

 

当项目package后

1
mvn deploy

就可以将jar上传到nexus私服

分享到:
评论
1 楼 zuxianghuang 2018-03-12  
通过pom上传报错

Artifact upload failed.
Repository with ID='thirdparty' does not allow updating artifacts.

相关推荐

    开发+MAVEN私服+nexus最新版+jar包依赖

    开发人员的福音,MAVEN私服,nexus截止到目前最新版,提供共完善jar包依赖使用功能

    maven私库nexus批量上传jar工具

    go语言写的一个工具,用于批量上传本地仓库的jar到nexus私库。目前只有exe没有生成linux脚本。文件夹中有使用说明。 .\mvnDeployTool.exe -r C:\\Users\\yyc\\.m2\\repository\\org\\apache\\maven -s D:\devEnv\...

    Maven更新失败,Cannot resolve plugin org.apache.maven.plugins:maven-compiler-plugin:3.1

    今天Maven在更新的时候发现一直更新不成功,总结下解决方法。 在apache-maven-3.5.2/conf/setting.xml中加入以下配置即可解决 alimaven aliyun maven ...

    maven批量导入第三方jar包至本地库工具

    借此项目,可将下载的maven的jar包按指定格式修改后,maven批量导入第三方jar包至maven本地库,实现快速的maven自动导入maven本地库(建议需要导入的jar包较多时使用)

    使用Nexus1.8搭建Maven私服以及在网页上上传JAR包

    使用Nexus1.8搭建MAVEN私服详细步骤,以及在网页上上传JAR包

    使用python编写的自动生成maven批量上传jar包工具

    maven上传jar包到nexus私有库 由于是nexus菜鸟,不知道要上传哪些包,所以全部本地上传,一个一个的写太麻烦,于是写了个批量生成maven脚本的py脚本,使用说明见py文件内部说明

    nexus 搭建 maven仓库

    nexus 搭建 maven仓库nexus 搭建 maven仓库nexus 搭建 maven仓库nexus 搭建 maven仓库nexus 搭建 maven仓库

    nexus3搭建需要的jar包.zip

    Nexus3私服搭建教程,以及搭建中可能出现的问题部分解决方案。 搭建环境所需要的jar包版本包含 maven,jdk,nexus3

    Maven权威指南 很精典的学习教程,比ANT更好用

    Maven权威指南 Authors Tim O'Brien (Sonatype, Inc.) , John Casey (Sonatype, Inc.) , Brian Fox (Sonatype, Inc.) , Bruce Snyder () , Jason Van Zyl (Sonatype, Inc.) , Juven Xu () Abstract Maven权威指南...

    maven配置指南

    maven工具的使用 目 录 Maven 环境的配置 1. settings.xml存放路径 1 2. 设置Maven的环境变量 2 3. 配置 settings.xml 2 4. 安装Maven插件 2 ...11、MAVEN安装到私服(依赖于Maven Nexus配置) 11

    使用Nexus添加jar包到私服里的方法步骤

    主要介绍了使用Nexus添加jar包到私服里的方法步骤,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

    nexus3.x上传jar包的eclipse插件

    nexus3.x版本取消了jar包上传的功能,命令的方式又太麻烦,所有做了个eclipse的小插件。

    nexus-2.14.8-01.tar.gz;Maven私服;Nexus2.x

    Linux版本Nexus私服,nexus-2.14.8-01;nexus官网下载速度太慢;因此下载下来,已经过安装测试,配合Nginx可完美运行;有了它,我们就可以将自己的模块代码封装放进私服给到小伙伴们使用;开发利器;

    mvn批量上传jar包到nexus仓库

    脚本原理:读取指定路径下的所有pom后缀的文件,摘取里面的groupid,version,artifactId内容,拼装成mvn deploy:deploy-file语句,可以直接在linux下执行,或者在win环境通过复制里面的命令在cmd执行。

    mavenimport.sh

    maven本地缓批量存上传到Nexus Repository Manager的脚本,本地仓库从远程仓库拉取的缓存文件上传的本地私服,只要将本文件添加到缓存文件的一级目录然后运行该脚本文件即可,传入参数包含私服的url以及私服仓库的...

    apache-maven-3.3.9.rar

    4.配置maven本地仓库(存放本地jar包)新建一个文件夹,路径自定义,名称为“repository” 5.打开maven解压路径下的conf下的settings.xml文件,在文件中找到注释了的字符串“/path/to/local/repo” 6.Maven默认...

    nexus3import.py

    自己用nexus3搭建了一个maven私库,想要把本地maven仓库中的jar包导入到服务器上的nexus3,发现没有好的办法,所以写了个python脚本批量调用nexus3上传接口上传本地maven仓库下的jar包和pom文件到服务器上的nexus3。

    Maven 私服 Nexus3

    Maven和ant都是软件构建工具(软件管理工具),Maven比Ant更加强大,已经取代了ant,jar包的声明式依赖描述。Maven有jar包的仓库。 私服是架设在局域网的一种特殊的远程仓库,目的是代理远程仓库及部署第三方构件。有...

Global site tag (gtag.js) - Google Analytics