云容器(二)、使用nexus搭建maven包依赖仓库

1、nexus安装;

使用docker-compose进行安装;

参考:Docker安装Nexus3私服以及使用-腾讯云开发者社区-腾讯云 (tencent.com)

文件docker_nexus.yml,内容如下

复制代码
version: "3.3"
services:
  nexus:
    image: sonatype/nexus3
    container_name: nexus3
    restart: always
    environment:
      - TZ=Asia/Shanghai
    ports:
      - 7071:8081
    volumes:
      - K:\docker_data\nexus\data:/nexus-data
    networks:
      - mynet
      
# 统一管理网桥
networks:
  mynet:
    driver: bridge

构建命令:

复制代码
docker-compose -f docker_nexus.yml up -d

访问地址:http://localhost:7071/#browse

2、本地的依赖包上传:

将文件mvnimport.sh放置在本地jar包目录下(注意要放置位置在所有jar包的父节点)

使用gitbash执行上传命令:

复制代码
./mvnimport.sh -u admin -p admin -r http://192.168.30.168:7071/repository/maven-public/

mvnimport.sh内容:

复制代码
#!/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 './mvnimport\.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}/{} ;
相关推荐
机器学习之心HML1 天前
MATLAB基于GWO-BP神经网络对某拨叉件锻造金属流动性的参数分析
开发语言·神经网络·matlab
Cg136269159741 天前
多态的定义
java·开发语言
weixin_46681 天前
编程之python基础
开发语言·python
云霄IT1 天前
新版电脑微信4.1.x.x小程序逆向之——寻找小程序存放位置目录和__APP__.wxapkg
java·微信·小程序
微信api接口介绍1 天前
微信社群管理开发
java·开发语言·网络·微信
csbysj20201 天前
PHP 类型比较
开发语言
白熊1881 天前
【图像大模型】ms-swift 深度解析:一站式多模态大模型微调与部署框架的全流程使用指南
开发语言·ios·swift
「QT(C++)开发工程师」1 天前
C++语言编程规范-并发
java·linux·c++
Meteors.1 天前
23种设计模式——迭代器模式 (Iterator Pattern)详解
java·设计模式·迭代器模式
自由的疯1 天前
Java Jenkins+Docker部署jar包
java·后端·架构