如何通过命令行在sonatype nexus存储库中创建文件夹

时间:2016-01-13 09:37:48

标签: batch-file sonatype

有没有办法通过windows命令行或批处理文件在sonatype nexus存储库中创建文件夹和复制工件?

2 个答案:

答案 0 :(得分:2)

我终于通过curl功能解决了我的问题。

curl -u admin:admin123 -T C:\ upload \ Test.txt http://Nexus_Repo_URL/folder_to_be_created/Test.txt

“folder_to_be_created”是在存储库中创建的文件夹,文件'Test.txt'被复制到其中

答案 1 :(得分:1)

只需使用此处描述的方法之一将工件上传到需要的任何路径:

https://support.sonatype.com/hc/en-us/articles/213465818-How-can-I-programatically-upload-an-artifact-into-Nexus-

将自动创建所需的任何文件夹。