Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/eclipse/9.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Eclipse 快速滑动误差_Eclipse_Html_Rapidclipse - Fatal编程技术网

Eclipse 快速滑动误差

Eclipse 快速滑动误差,eclipse,html,rapidclipse,Eclipse,Html,Rapidclipse,我是RapidClipse的新手。我试着运行它,但出现了这个错误 Errors occurred during the build. Errors running builder 'Maven Project Builder' on project 'test2'. Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencie

我是RapidClipse的新手。我试着运行它,但出现了这个错误

Errors occurred during the build.
Errors running builder 'Maven Project Builder' on project 'test2'.
Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6
Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6
Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6
Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6

请提供帮助。

RapidClipse项目是使用maven插件构建的maven项目。 “Maven项目生成器”本身使用了一些附加插件,其中包括“Maven资源插件”

如果本地存储库中不存在插件,maven将在远程存储库中搜索该插件,并尝试将其自动下载到本地存储库(默认位置:
.m2/repository
用户主目录中的文件夹)

这个过程在这里失败了

您可以手动触发解析和下载过程:

  • 确保有正常的internet连接,如有必要,请确保代理设置正确

  • 右键单击ProjectManagement或project Explorer中的Rapidclipse项目,然后转到
    Maven
    -
    Update project

  • 激活复选框
    强制更新快照/发布
    ,并用
    确定


在此之后,项目的构建过程应该可以正常工作。

RapidClipse项目是使用maven插件构建的maven项目。 “Maven项目生成器”本身使用了一些附加插件,其中包括“Maven资源插件”

如果本地存储库中不存在插件,maven将在远程存储库中搜索该插件,并尝试将其自动下载到本地存储库(默认位置:
.m2/repository
用户主目录中的文件夹)

这个过程在这里失败了

您可以手动触发解析和下载过程:

  • 确保有正常的internet连接,如有必要,请确保代理设置正确

  • 右键单击ProjectManagement或project Explorer中的Rapidclipse项目,然后转到
    Maven
    -
    Update project

  • 激活复选框
    强制更新快照/发布
    ,并用
    确定

在那之后,项目的建设过程就应该开始了