我们目前正在设置maven和tycho来构建eclipse插件。在示例和文档之后,我们添加了一些布局p2
的存储库,如下所示:
<repository>
<id>eclipse-indigo</id>
<layout>p2</layout>
<url>http://download.eclipse.org/releases/indigo</url>
</repository>
现在,每次执行pom时,maven都会“获取”p2索引,这需要相当长的时间。我们看到很多像
这样的行[INFO] Fetching p2.index (0B of 96B at 0B/s) from http://download.eclipse.org/releases/indigo/
并且它需要一些重要的时间,直到它实际开始构建或清理或其他。
有没有办法禁用抓取,至少是暂时的?
答案 0 :(得分:7)
您可以使用maven离线模式(命令行开关-o)
有关详细信息,请参阅https://bugs.eclipse.org/bugs/show_bug.cgi?id=357357