简体   繁体   English

Eclipse中的Maven错误-BPMN2 Modeler

[英]Maven Error in Eclipse - BPMN2 Modeler

my problem is the following. 我的问题是以下。 I have Eclipse Kepler SR1 and imported an maven project out of the following git: http://git.eclipse.org/c/bpmn2/.git/ 我有Eclipse Kepler SR1,并从以下git导入了一个maven项目: http : //git.eclipse.org/c/bpmn2/.git/

This is a metamodel for the BPMN 2.0. 这是BPMN 2.0的元模型。 After that i wanted to do a maven install but when i do this the following Error pops up 之后,我想进行Maven安装,但是当我这样做时,会弹出以下错误

[ERROR] Failed to execute goal org.eclipse.cbi.maven.plugins:eclipse-jarsigner-plugin:1.0.3:sign (sign) on project org.eclipse.bpmn2: Could not sign artifact org.eclipse.bpmn2:org.eclipse.bpmn2:eclipse-plugin:0.7.0-SNAPSHOT: Connection to http://build.eclipse.org:31338 refused: Connection timed out: connect -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the             following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[ERROR] 
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR]   mvn <goals> -rf :org.eclipse.bpmn2

Maven is correctly installed and i checked the superpom. Maven已正确安装,我检查了Superpom。 There is no mistake in my opinion. 我认为没有错误。 I also updated the pluginRepository for plugin signin to https://repo.eclipse.org/content/repositories/cbi-releases/ . 我还将插件登录的pluginRepository更新为https://repo.eclipse.org/content/repositories/cbi-releases/ Is there anyone who knows the mistake and can help me? 有谁知道错误并可以帮助我吗?

Best Regards 最好的祝福

The first line of your error message contains a timeout for http://build.eclipse.org:31338 - that seems to me an internal address. 错误消息的第一行包含http://build.eclipse.org:31338的超时-在我看来,这是内部地址。

If I am not mistaken, this is used by the jar signer plug-in mentioned in the build script that is an eclipse.org-only service (for obvious reasons). 如果我没记错的话,构建脚本中提到的jar签名器插件会使用它,这是一个仅eclipse.org的服务(出于明显的原因)。 Search for the followi 搜索追随者

  <groupId>org.eclipse.cbi.maven.plugins</groupId>
  <artifactId>eclipse-jarsigner-plugin</artifactId>

As signing is an internal service, we in the EMF-IncQuery project execute signing only when a specific profile is selected, thus allowing building our project outside eclipse.org servers. 由于签名是一项内部服务,因此我们在EMF-IncQuery项目中仅在选择了特定配置文件后才执行签名,从而允许在eclipse.org服务器之外构建我们的项目。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM