我正在尝试使用其余的api创建一个子项目,如下所示:http://confluence.jetbrains.com/display/TW/REST+API+Plugin#RESTAPIPlugin-GeneralInfo
当我使用以下命令发布帖子时,我有一个id =“abcd”的根项目:
<newProjectDescription
name='test'
id='abcd_test'
parentProject='id:abcd'
copyAllAssociatedSettings='true'>
</newProjectDescription>
到http://myteamcity.foo.com/httpAuth/app/rest/projects。
项目是作为根项目创建的,但应该将其创建为“abcd”的子项目。
我正在使用TeamCity Professional 8.0.2(版本27482)。
由于
答案 0 :(得分:6)
我们的文档中有一些小错误,请使用xml,如:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<newProjectDescription name="Inner" id="Outer_Inner">
<parentProject id="Outer"/>
</newProjectDescription>
或
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<newProjectDescription name="Inner" id="Outer_Inner">
<parentProject locator="id:Outer"/>
</newProjectDescription>
用于创建新项目内部作为外部的子项目
对于复制操作,只需添加<sourceProject locator="id:CopyFrom"/>
代码和copyAllAssociatedSettings
字段。