有没有办法避免 Scala 库在 Eclipse/Scala/Maven 项目中出现两次?
我有
- Eclipse 3.5.2
- Scala 2.8.0 Final(包括最新的 Scala IDE for Eclipse)
- Maven 集成,用于 Eclipse
- Maven 2.2.1
- 由
maven-eclipse-plugin
生成
.project 和 .classpath 文件, 使用 Scala 为我的 Java 代码编写 Specs BDD 测试,到目前为止,上面的设置运行得非常好。然而,我有一个令人困惑的问题,我想知道是否有人知道如何解决它。
Scala 库在我的项目中出现了两次。
- 在 M2 ClassPath(作为 Maven 依赖项)中
- 作为 Eclipse 系统库(与 JRE 系统库的方式相同)
因此,当我 Ctrl-Shft-T
时,每个 Scala 类都会出现两次。
可以在不破坏命令行或工作区中我的 Scala 项目的情况下避免这种情况吗?
I have
- Eclipse 3.5.2
- Scala 2.8.0 final (inc latest Scala IDE for Eclipse)
- Maven integration for Eclipse
- Maven 2.2.1
- .project and .classpath files generated by
maven-eclipse-plugin
I'm using Scala to write Specs BDD tests for my Java code and the setup above is working very nicely so far. However, I have one puzzling problem and I would like to know whether anyone knows how to resolve it.
The Scala libraries are appearing in my project twice.
- in the M2 ClassPath (as a Maven Dependency)
- as an Eclipse System Library (in the same manner as the JRE System Libraries)
Consequently, when I Ctrl-Shft-T
every Scala class appears twice.
Can this be avoided without breaking my Scala project in either the command line or the Workspace?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
解决此类问题的最佳位置是 Scala IDE 用户邮件列表。
有关通过 m2eclipse 使用 Eclipse 的 Scala 工具和 Maven 的最新文档可以在 这里。
The best place for questions like this is the Scala IDE user mailing list.
The most up to date documentation on using the Scala tooling for Eclipse with Maven via m2eclipse can be found here.
为了回答我自己的问题,
(正如上面所暗示的那样)maven-eclipse-plugin 基本上已经过时了。当我
.settings
和.project
),maven-eclipse-plugin< 的所有引用/code> 从我的
pom
m2eclipse-scala
插件,所有设置均已正确检测到,我不再看到 scala 的双重条目我的类路径中的类。
To answer my own question,
it appears (as hinted at by all above) that
maven-eclipse-plugin
is essentially obsolete. When I.settings
and.project
from my project directory)maven-eclipse-plugin
from mypom
m2eclipse-scala
pluginall settings were detected correctly and I no longer saw the double entry of scala classes in my classpath.