maven:将jar制作成依赖导入maven私服

自己做了一个工具包 mytool-2.1.3.jar

(1)按照如下写法:

mvn install:install-file -DgroupId=mytool -DartifactId=com.example.demo -Dversion=2.1.3 -Dpackaging=jar -Dfile=D:\mytool-2.1.3.jar

命令行执行一下,有个别maven版本软件会报错,换个环境就行了,或者在linux下执行。

(2)成功后开始配置项目pom.xml

<dependency>

<groupId>mytool</groupId>

<artifactId>com.example.demo</artifactId>

<version>2.1.3</version>

</dependency>

(3)上传maven私服,在步骤一的执行结果中,告知了你的这个包存放在了哪个地方,从本地仓库根目录开始,取出安装好的包文件,保留目录结构。

(4)linux命令行导入maven私服,这里以nexus为例,一共两个脚本

脚本1 import.sh

bash 复制代码
#!/bin/bash
# copy and run this script to the root of the repository directory containing files
# this script attempts to exclude uploading itself explicitly so the script name is important
# Get command line params
while getopts ":r:u:p:" opt; do
    case $opt in
        r) REPO_URL="$OPTARG"
        ;;
        u) USERNAME="$OPTARG"
        ;;
        p) PASSWORD="$OPTARG"
        ;;
    esac
done
  
find . -type f -not -path './import\.sh*' -not -path '*/\.*' -not -path '*/\^archetype\-catalog\.xml*' -not -path '*/\^maven\-metadata\-local*\.xml' -not -path '*/\^maven\-metadata\-deployment*\.xml' | sed "s|^\./||" | xargs -I '{}' curl -u "$USERNAME:$PASSWORD" -X PUT -v -T {} ${REPO_URL}/{} ;

脚本2 start.sh

bash 复制代码
./import.sh -u admin -p 54123bd75 -r http://xxxxxx:80/repository/maven-repo/

两个脚本放一起,和步骤(3)取出的文件夹放在一起,配置账号密码,执行start.sh即可。

相关推荐
五岳3 小时前
分库分表数据源ShardingSphereDataSource的Connection元数据误用问题分析
java·mysql·爬坑
带刺的坐椅3 小时前
迈向 MCP 集群化:Solon AI (支持 Java8+)在解决 MCP 服务可扩展性上的探索与实践
java·ai·llm·solon·mcp
鼠爷ねずみ3 小时前
SpringCloud前后端整体开发流程-以及技术总结文章实时更新中
java·数据库·后端·spring·spring cloud
代码or搬砖3 小时前
String字符串
android·java·开发语言
AM越.5 小时前
Java设计模式详解--装饰器设计模式(含uml图)
java·设计模式·uml
5980354155 小时前
【java工具类】小数、整数转中文大写
android·java·开发语言
JIngJaneIL5 小时前
基于java + vue个人博客系统(源码+数据库+文档)
java·开发语言·前端·数据库·vue.js·spring boot
吃喝不愁霸王餐APP开发者6 小时前
Java后端服务在对接全国性霸王餐API时的多数据中心部署与就近调用策略
java·开发语言
从心归零6 小时前
springboot-jpa的批量更新方法
java·spring boot·spring