Eclipse Indigo 中的 m2e 不再工作
m2e 不再在我的 Eclipse Indigo 中工作。 Maven 控制台没有打印任何内容,我无法下载任何源代码,并且某些依赖项将无法解决。 我正在使用嵌入式 Maven 安装。
你知道如何解决这个问题吗?
m2e is no longer working in my Eclipse Indigo. Nothing is printed to the Maven console, I can't download any sources and some dependencies won't be resolved.
I'm using the embedded Maven installation.
Do you know how to fix this issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只是一个疯狂的猜测(由于我过去遇到过类似的问题):
settings.xml
文件中。settings.xml
文件中m2e 只能使用 Maven 设置文件中设置的代理,而不能使用 eclipse 环境中的代理。因此,您可以看到本地存储库中包含的所有旧库,但没有仅包含在位于互联网上某处的远程存储库中的新库。
请添加一些有关您在 eclipse 中的配置的更多信息(eclipse 是否找到您的用户
settings.xml
文件?)以及您遇到的错误。Just a wild guess (due to similar problems I had in the past):
settings.xml
file.settings.xml
filem2e can only use the proxy set in your Maven settings file, not the one in your eclipse environment. So as a result, you could see all the old libraries contained in local repositories, but no new ones contained only in remote repositories located somewhere on the internet.
Please add some more information about your configuration in eclipse (does eclipse find your user
settings.xml
file?) and the errors you get.尝试 -clean 工作区选项。或者,如果没有帮助,请创建新工作区,测试 m2e 是否开始工作并导入旧项目。我刚刚使用第二个选项解决了与您的问题非常相似的问题。
这里是对此类麻烦的很好的解释: http://www.eclipsezone.com/eclipse /forums/t61566.html
Try -clean workspace option. Or if it doesn't help, create new workspace, test if m2e started working and import your old projects. I just resolved issue very similar to yours using second option.
Here is good explanation of such kind of troubles: http://www.eclipsezone.com/eclipse/forums/t61566.html