我们目前正在设置 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/
并且它需要一些相当长的时间才能真正开始构建或清理或其他任何东西。
有没有办法至少暂时禁用提取?