zoukankan      html  css  js  c++  java
  • Maven上传

    1. 将Jar包安装到本地仓库

    mvn install:install-file -Dfile=D:quartz-terracotta-bootstrap-2.2.2-SNAPSHOT.jar -DgroupId=org.quartz-scheduler.internal -DartifactId=quartz-terracotta-bootstrap -Dversion=2.2.2-SNAPSHOT -Dpackaging=jar
    

    -- DgroupId和DartifactId构成了该jar包在pom.xml的坐标, 对应依赖的DgroupId和DartifactId
    -- Dfile表示需要上传的jar包的绝对路径
    -- Dpackaging 为安装文件的种类

    2. 上传Jar到私服

    mvn deploy:deploy-file -DgroupId=org.terracotta.toolkit -DartifactId=terracotta-toolkit-api-internal -Dversion=1.12 -Dpackaging=jar -Dfile=D:	erracotta-toolkit-api-internal-1.12.jar -Durl=http://ip:port/nexus/content/repositories/thirdparty/ -DrepositoryId=thirdparty 

    -- DgroupId和DartifactId构成了该jar包在pom.xml的坐标, 对应依赖的DgroupId和DartifactId
    -- Dfile表示需要上传的jar包的绝对路径
    -- Durl私服上仓库的url精确地址(打开nexus左侧repositories菜单,可以看到该路径)
    -- DrepositoryId服务器的表示id,在nexus的configuration可以看到

  • 相关阅读:
    supervisor启动错误解决(二)
    删除文件某行
    离线安装
    docker中/var/lib/docker目录迁移
    if else 使用
    Django views函数添加装饰器
    Netty4
    Fast DFS(二)
    Fast DFS(一)
    SpringBoot和app之间跨域问题
  • 原文地址:https://www.cnblogs.com/dayaodao/p/5648994.html
Copyright © 2011-2022 走看看