我正在使用RallyDev eclipse插件。如何将服务器添加到“添加任务资源库服务器”下拉列表中?我们在自己的服务器上运行Rally,但是我无法添加服务器。
我正在使用Eclipse Juno和Rally Plugin版本3.4。
谢谢!
答案 0 :(得分:1)
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参数从命令行重新启动。