I have
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.
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?
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 my pom
m2eclipse-scala
pluginall settings were detected correctly and I no longer saw the double entry of scala classes in my classpath.