我上传了这样的文件:
curl -u ${CREDS} --upload-file ${file} ${url}
有没有办法添加一个或多个将为文件设置元数据的标题?就像内部版本号一样。
答案 0 :(得分:3)
您实际上可以使用matrix parameters将具有属性的工件部署到Artifactory OSS,例如:
curl -uadmin:password -T file.tar "http://localhost:8081/artifactory/generic-local/file.tar;foo=bar;"
使用REST API获取工件属性,例如:
curl -uadmin:password "http://localhost:8081/artifactory/api/storage/generic-local/file.tar?properties"
从UI和其他功能查看属性仅限于专业版。
答案 1 :(得分:1)
似乎这是专业功能。文档:Set Item Properties
PUT /api/storage/{repoKey}{itemPath}?properties=p1=v1[,v2][|p2=v3][&recursive=1]
没有帮助我: - /