nafg/reactive

Scala 2.10.x support?

JMacLulich opened this issue · 4 comments

Hi,

Just wondering if there is support for Scala 2.10.x; I don't seem to be able to find any up to date jars to use from sbt?

Thanks, Jason.

I should add that if I compile reactive-core (the part I'm interested in) I get errors relating to the use of the deprecated use of scala.actors. I take it the old scala actors is still a dependency, I'm intending to use this jar in a Akka project, do you know if there might be issues?

nafg commented

Unfortunately the Getting Started page is a bit out of date. There are two
releases for 2.10, 0.3.0 and 0.3.1. (Earlier scala versions have been
discontinued.)

What errors are you getting? Deprecation is usually a warning.

Can you file a ticket (or pull request) to update the getting started page,
and a ticket to eliminate usage of scala.actors?

Thanks.

On Fri, May 17, 2013 at 1:02 AM, Jason MacLulich
notifications@github.comwrote:

I should add that if I compile reactive-core (the part I'm interested in)
I get errors relating to the use of the deprecated use of scala.actors.


Reply to this email directly or view it on GitHubhttps://github.com//issues/70#issuecomment-18043913
.

Ah, OK, will do.

The problem I had was that I'm using 2.10.0 for my server dev so I wanted a 2.10.0 scala-reactive jar to use.

I added:

scalaVersion := "2.10.0" 

libraryDependencies ++= Seq(                                                    
    "org.scala-lang" % "scala-actors" % "2.10.0"                                
)

to build.sbt in reactive-core as the standard scala package for 2.10.0 does not include scala.actors.; I'm using the reactive-core jar as an unmanaged dependency in my server at the moment.

When you get a chance to upload the updated jars as a maven dependency I'll move over to using them.

Cheers.

nafg commented

@JMacLulich please confirm the issue is solved.