Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/ember.js/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Cloudbees 复制到发布存储库_Cloudbees - Fatal编程技术网

Cloudbees 复制到发布存储库

Cloudbees 复制到发布存储库,cloudbees,Cloudbees,我想知道用一个简单的ant脚本将构建结果复制到发布库中最简单的方法是什么。我希望手动触发(而不是在everey build上)。您能给我一些建议吗?部署到CloudBees发布存储库需要webDav客户端和存储库凭据,因此使用ant脚本最简单的方法是 使用id“cloudbees private repository”的存储库凭据将从默认的maven settings.xml中获取,该设置是使用forge crendentials在您的帐户上设置的,因此您不必传递它们。您还可以将其作为参数传

我想知道用一个简单的ant脚本将构建结果复制到发布库中最简单的方法是什么。我希望手动触发(而不是在everey build上)。您能给我一些建议吗?

部署到CloudBees发布存储库需要webDav客户端和存储库凭据,因此使用ant脚本最简单的方法是


使用id“cloudbees private repository”的存储库凭据将从默认的maven settings.xml中获取,该设置是使用forge crendentials在您的帐户上设置的,因此您不必传递它们。您还可以将其作为参数传递:

<remoteRepository url="dav:https://repository-nicolas.forge.cloudbees.com/release/">
  <authentication username="..." privateKey="..."/>
</remoteRepository>

部署到CloudBees发布存储库需要webDav客户端和存储库凭据,因此使用ant脚本最简单的方法是


使用id“cloudbees private repository”的存储库凭据将从默认的maven settings.xml中获取,该设置是使用forge crendentials在您的帐户上设置的,因此您不必传递它们。您还可以将其作为参数传递:

<remoteRepository url="dav:https://repository-nicolas.forge.cloudbees.com/release/">
  <authentication username="..." privateKey="..."/>
</remoteRepository>