如何将服务器添加到RallyDev Eclipse插件

时间:2012-12-13 16:25:45

标签: eclipse plugins rally

我正在使用RallyDev eclipse插件。如何将服务器添加到“添加任务资源库服务器”下拉列表中?我们在自己的服务器上运行Rally,但是我无法添加服务器。

我正在使用Eclipse Juno和Rally Plugin版本3.4。

Add a Task Repository screenshot

谢谢!

1 个答案:

答案 0 :(得分:1)

  1. 导航到您的eclipse安装目录。
  2. 进入“plugins”目录并找到Rally插件的目录。对我来说,目录名为com.rallydev.mylyn.ui_1.5.11.201207192017
  3. 在您选择的编辑中打开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>
    
  4. 保存文件。如果它已经运行,请关闭eclipse。请注意,我声明'关闭'而不是'重启'。
  5. 在命令提示符/ terminal上导航到您的eclipse安装目录。
  6. 使用arg -clean从命令行启动eclipse。例如:     C:\ eclipse \ eclipse.exe -clean
  7. 在您下次尝试添加Rally Task Repo时,您将在服务器下拉菜单中看到您的标签。 您可能需要根据安装的ALM调整“urlRepository”。您将知道需要调整URL,因为“验证设置”将失败。只需确保在任何plugin.xml修改后使用-clean参数从命令行重新启动。

    After plugin.xml modifications screenshot