I've upgraded Eclipse from 4.3 to 4.4 on Ubuntu. To start from fresh, I've also removed my .eclipse and installed the Scala IDE from http://download.scala-ide.org/sdk/lithium/e44/scala211/dev/site. I used this version as there's no information as to whether version 3.0.4 works with Eclipse 4.4.
I've cleaned my Scala project and started Eclipse with -clean. However, the code doesn't compile anymore because of the following problems:
- One of my packages uses import scala.swing._ This produces the error message
object swing is not a member of package scala
- I use spire and scalaxy-loops. It seems that the 2.10 versions of these, which I have in my workspace, can't be used. Scala reports
can't expand macros compiled by previous versions of Scala
I didn't change any of the default options for Scala.
--
You received this message because you are subscribed to the Google Groups "Scala IDE User" group.
To unsubscribe from this group and stop receiving emails from it, send an email to scala-ide-use...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/scala-ide-user/e999b3f5-59bf-473d-941c-137be3181aa6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
scala.swing is no longer part of the Scala 2.11 library. You have to add it explicitly as a dependency.
--
You received this message because you are subscribed to the Google Groups "Scala IDE User" group.
To unsubscribe from this group and stop receiving emails from it, send an email to scala-ide-use...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/scala-ide-user/8ddbf339-b148-441c-b4ef-2dd56e50103a%40googlegroups.com.
Where do I find Scala Swing? A Google search found https://github.com/scala/scala-swing, but this is unmaintained.
Maybe I should downgrade to Scala 2.10 instead. Does http://downloads.typesafe.com/scalaide-pack/3.0.3.vfinal-210-20140327/scala-SDK-3.0.3-2.10-linux.gtk.x86_64.tar.gz work for Eclipse 4.4?
--
You received this message because you are subscribed to the Google Groups "Scala IDE User" group.
To unsubscribe from this group and stop receiving emails from it, send an email to scala-ide-use...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/scala-ide-user/a20d81e1-36d5-4ca7-b97a-24cd711268e3%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "Scala IDE User" group.
To unsubscribe from this group and stop receiving emails from it, send an email to scala-ide-use...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/scala-ide-user/ecad9700-57e3-4878-a49f-f93256cde81a%40googlegroups.com.
I've added
scalaVersion := "2.11.2"
libraryDependencies += "org.scala-lang" %% "scala-swing" % "2.11.2"
and I get
[error] (*:update) sbt.ResolveException: unresolved dependency: org.scala-lang#scala-swing_2.11;2.11.2: not found
There's no release version for 2.11 on http://search.maven.org/#search|gav|1|g%3A%22org.scala-lang%22%20AND%20a%3A%22scala-swing%22
--
You received this message because you are subscribed to the Google Groups "Scala IDE User" group.
To unsubscribe from this group and stop receiving emails from it, send an email to scala-ide-use...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/scala-ide-user/ecad9700-57e3-4878-a49f-f93256cde81a%40googlegroups.com.