我正在尝试为Geonnetwork元数据编辑器设置环境。我已经安装了带有Tomcat7.0的Java1.5SE。我已经使用了this tutorial来设置它。当应该从Eclipse下载依赖项并编译代码形式包根文件夹时,一切都很顺利,右键单击根文件夹中的pom.xml文件并选择Run As | Maven package。然后我得到了这个错误:
[INFO] ------------------------------------------------------------------------
[INFO] Building GeoNetwork opensource 2.9.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Caching xslt module 2.9.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[WARNING] The POM for org.apache.maven.plugins:maven-resources-plugin:jar:3.0.4 is missing, no dependency information available
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
[INFO] GeoNetwork opensource ............................. SUCCESS [0.001s]
[INFO] Caching xslt module ............................... FAILURE [0.027s]
[INFO] Jeeves modules .................................... SKIPPED
[INFO] Oaipmh modules .................................... SKIPPED
[INFO] ArcSDE module (dummy-api) ......................... SKIPPED
[INFO] GeoNetwork web client module ...................... SKIPPED
[INFO] GeoNetwork Web module ............................. SKIPPED
[INFO] GeoServer module .................................. SKIPPED
[INFO] Gast module ....................................... SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.476s
[INFO] Finished at: Wed Aug 08 14:10:43 CEST 2012
[INFO] Final Memory: 3M/6M
[INFO] ------------------------------------------------------------------------
[ERROR] Plugin org.apache.maven.plugins:maven-resources-plugin:3.0.4 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:3.0.4: Failure to find org.apache.maven.plugins:maven-resources-plugin:pom:3.0.4 in http://oss.sonatype.org/content/repositories/github-releases was cached in the local repository, resolution will not be reattempted until the update interval of oss.sonatype.org-github-releases has elapsed or updates are forced -> [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:我已经搜索过了,但没有成功:(
发布于 2013-04-04 02:32:16
使用1.6 JRE运行Geonetwork。它是在Geonetwork开发人员手册和您链接的教程中编写的。
即便如此,您也应该能够使用Java1.5构建imho…
我在构建时遇到了相同的问题(JDK和JRE版本1.7.0_17)。我在谷歌上搜索了maven存储库,并在pom.xml文件中手动编辑了存储库的url。
因为带有maven的eclipse喜欢崩溃,所以我建议使用命令mvn clean install从命令行运行maven。如果你必须在eclipse中使用maven,那么我建议重启eclipse并重新运行maven。另外,使用Geonetwork开发人员手册进行构建(google it,我不能插入超过2个链接;)。
您还可以在bug tracker或dev forum中找到有关构建崩溃原因的一些线索。
https://stackoverflow.com/questions/11864910
复制相似问题