I have Eclipse Indigo with the Scala IDE plugin. I downloaded a lift project from Maven. It builds correctly. Eclipse says it is viewing it with the Scala editor.

However, it is still giving my an error on each line because it is treat the code as Java (it gives errors for no semicolon, for the word "def" etc.) I tried cleaning the project and it still gives the errors.

link|improve this question

77% accept rate
i hope the file is called ".scala" ? – aishwarya Dec 15 '11 at 15:56
One possible reason is that you installed Scala IDE 2.0 RC3 and have Groovy plugin installed. If so, update to RC4. – Alexey Romanov Dec 15 '11 at 16:05
Yes, the file is called Scala. I took the Scala IDE last night, so I'm pretty sure it's RC4. – Joe Dec 15 '11 at 16:26
feedback

4 Answers

up vote 5 down vote accepted

A couple of things I would try:

1) Right-click on project, Configure > Add Scala Nature.

2) In the Scala menu, Run Setup Diagnositics... > Use recommended default settings

link|improve this answer
This caused the "red screen of death" (red squiggly lines everywhere for me. I believe it was because I edited my eclipse.ini file to increase the heap size (as recommended by the Scala plugin on startup) then restarted eclipse -- Then the setup diagnostics never re-ran, causing the Scala plugin not to never be setup correctly. – jhclark Apr 1 at 18:27
feedback

Open the Package Explorer, look at your scala source. Does the icon displays a S (for Scala), or a J (for Java)?

If you see a S, then you are likely missing the Scala Nature. As Luigi suggested, try to add the Scala Nature and see if that fixes your issue (Right-click on project, Configure > Add Scala Nature.)

Otherwise, if you see a J, the odds are that "JDT Weaving" is not enabled. That should not happen and might depend on other plugins you have installed.

What I would try if I were you is simply uninstalling all Scala IDE plugins from Eclipse ("Scala IDE for Eclipse", and also the "JDT Weaving for Scala" if you see it in the list of installed plugins). Then, reinstall Scala IDE 2.0.0-RC04. I know, it's not the ideal solution, but it's hard to tell what is going on without more information.

If that doesn't work either, please write a message in the scala-ide-user Mailing List. Make sure to provide the full list of plugins you have in your Eclipse installation. That might help us understand what is going on.

link|improve this answer
feedback

I've had this problem before as well when using Maven and Eclipse - I'll be working in the Scala perspective and everything is fine, and then at some point Indigo completely loses track of the fact that it's using Scala and is building my code with a Java compiler. No amount of fiddling with Build Path and configurations, cleaning projects or enabling the Scala nature seems to fix it.

The only solution I've come up with so far is to use IntelliJ when I use Maven, and use Scala Eclipse plugin only when using SBT to build projects. You can try converting your Maven POM to an SBT project, but you'll have to update that every time your dependencies change. Heiko Seeberger's sbt-eclipse plugin is pretty slick.

link|improve this answer
1  
I'm not much experienced with ScalaIDE+Maven, but I'm very surprised to hear that. I know for sure lots of folks use the Scala IDE for Eclipse with Maven, and we don't know of any such problem. What may be happening is that you regenerate the Eclipse metadata project's files, and because of that the Scala Nature is no longer added to your project. Adding the Scala Nature is very easy, simply right-click on project, Configure > Add Scala Nature. You may also be interested in m2eclipse-scala (github.com/sonatype/m2eclipse-scala). – Mirco Dotta Dec 15 '11 at 17:43
I'll check that out, Mirco. Thanks. – jamie Dec 15 '11 at 17:44
Great! Let us know how it goes, we definitely need help to improve the User Documentation with respect to Scala IDE+Maven ;) – Mirco Dotta Dec 15 '11 at 18:01
feedback

I have similar issues, though when I remove the Scala Nature and Add it back it becomes ok. Which is fine for now.

But there is another issue:

My Java Classes refuse to recognize my Scala ones. However when I do a "Ctrl + Click" = Open Declaration, it goes to the right place. My Java Classes that depend on Scala look like Red all over. I checked Build Path settings etc, they all look ok.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.