我正在使用 RallyDev eclipse 插件。如何将服务器添加到“添加任务存储库服务器”下拉列表?我们在自己的服务器上运行 Rally,但我无法添加服务器。
我正在使用 Eclipse Juno 和 Rally 插件 3.4 版。
谢谢!
com.rallydev.mylyn.ui_1.5.11.201207192017
在您选择的编辑器中打开 plugin.xml 文件。并添加以下内容:
<plugin>
...
<extension point="org.eclipse.mylyn.tasks.core.templates">
...
<repository
label="[However you want to label your server]"
repositoryKind="rally"
urlRepository="https://uri/to/your/server/">
</repository>
...
</extension>
</plugin>
在您下次尝试添加 Rally Task Repo 时,您将在服务器下拉列表中看到您的标签。您可能需要根据安装的 ALM 调整您的“urlRepository”。您将知道您需要调整 URL,因为“验证设置”将失败。只需确保在任何 plugin.xml 修改后使用 -clean 参数从命令行重新启动即可。