安装Cobertura Eclipse插件:“找不到ecobertura.johoop.de/update”

时间:2019-02-14 16:01:30

标签: eclipse cobertura ecobertura

我需要安装Cobertura Eclipse Plugin (eCobertura),它显示了Eclipse中的单元测试范围。 (另一个链接here

按照指示,将工具栏从站点拖到我的Eclipse工作区中,并出现以下错误:

enter image description here

因此,我决定以不同的方式进行操作,并通过“安装新软件”并关闭“联系更新站点”复选框。但是我什至无法做到。即使我关闭了“联系更新站点”,它仍然说无法安装。我在做什么错了?

enter image description here

站点http://ecobertura.johoop.de/update确实处于脱机状态。仍然支持此插件吗?

1 个答案:

答案 0 :(得分:1)

我猜Eclipse不再支持Corbetura(在Eclipse市场上不可用),我遇到了同样的事情,最后最终使用了EclEmma。但是,如果您真的想使用它,可以尝试通过pom.xml

将插件直接添加到项目中。
       <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>cobertura-maven-plugin</artifactId>
            <version>2.5.1</version>
            <configuration>
                <formats>
                    <format>xml</format>
                </formats>
            </configuration>
            <executions>
                <execution>
                    <phase>package</phase>
                    <goals>
                        <goal>cobertura</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>     

以供参考:https://www.baeldung.com/cobertura