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?