新建一个文件夹,将要上传的jar包放进去,然后创建一个pom文件,例如xx.jar,pom.xml
首先创建一个目录 方便执行上传的时候url参数 也可以不创建,
上传XML curl -
v
-u admin:admin123 --upload-
file
pom.xml http:
//localhost
:8081
/nexus/repository/maven-releases/com/xx/xx/1
.0
/xx
.pom
上传jar包 curl -
v
-u admin:admin123 --upload-
file xx
.jar http:
//localhost
:8081
/nexus/repository/maven-releases/
com/xx/xx/1
.0
/xx
.jar
注意标红的部分需要换成你要上传的仓库里的位置
windows下使用curl命令
下载curl.exe
地址:https://curl.haxx.se/download.html
都上传成功后,在项目中的pom.xml就可以使用
<dependency> <groupId>com.xx</groupId> <artifactId>xx</artifactId>
<version>1.0</version>
</dependency>