团队, 我在nexus 2.x下的CI / CD管道中使用命令集进行构件上传和下载。现在我们要迁移到nexus 3.x,相同的命令集将在nexus 3.x上运行
**Artifact-Upload to nexus 2.x**
curl -v --user 'test1':'xxxx' --upload-file 'test.tgz' nexus_url
**Artifact-Download from nexus 2.x:**
wget nexus_url --auth-no-challenge --user 'test1' --passwd 'xxxx'
Please help on my clarification