第谷Maven离线构建

时间:2017-09-04 09:46:34

标签: eclipse maven build tycho

我们正在使用Maven / Tycho构建Eclipse RCP应用程序。在Eclipse中,一切都按预期工作

clean install

但是,由于我们的构建服务器是没有Internet连接的虚拟机,因此无法使用。我们跑

clean install --offline 

但它一直在说:

The POM for org.eclipse.tycho:tycho-maven-plugin:jar:0.25.0 is missing, no dependency information available

[ERROR] Some problems were encountered while processing the POMs:

Unresolveable build extension: Plugin org.eclipse.tycho:tycho-maven-plugin:0.25.0 or one of its dependencies could not be resolved: 
The following artifacts could not be resolved: org.eclipse.tycho:tycho-maven-plugin:jar:0.25.0, org.codehaus.plexus:plexus-utils:jar:1.1:
Cannot access central (https://repo.maven.apache.org/maven2) in offline mode and the artifact org.eclipse.tycho:tycho-maven-plugin:jar:0.25.0 has not been downloaded from it before. 

是否可以让tycho-maven-plugin脱机使用?如果您需要回答,我们也可以提供POM。

1 个答案:

答案 0 :(得分:0)

是的,Tycho确实支持--offline(至少自Tycho 0.25以来修复了Bug 461787)。但是,您引用的错误消息表明,您的初始mvn clean install未完全下载Tycho 本身

检查本地Maven存储库中是否存在org.eclipse.tycho:tycho-maven-plugin:jar:0.25.0org.codehaus.plexus:plexus-utils:jar:1.1(来自错误消息),因为Maven抱怨它无法在那里找到它们。您是否在此期间清理了本地存储库?