As Scala 2.10.1 is coming out soon, I believe, I want to make sure that artifacts I publish now will automatically work with a scala-library.jar of that version. I use sbt 0.12.2 to publish, and with a setting of
scalaVersion := "2.10.0"
I get correctly attached the binary compatible version to my artifact, e.g.
<artifactId>mylibrary_2.10</artifactId>
...but the scala library dependency still says 2.10.0:
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>2.10.0</version> <!-- !!! -->
</dependency>
I suppose that is not correct, and it should use 2.10 or 2.10.+ here?
I also tried to add scalaBinaryVersion := "2.10" but that doesn't seem to change anything.
Another idea I had was to use scalaVersion := "2.10.+". Sbt takes forever with Getting Scala 2.10.+ ..., but it finally goes on fine and the pom has this version now for scala-library.jar. So maybe this is the correct way?
2.10.+adds serious problems. I just found myself with typer errors in random places, until I found out that somehow some project had already drawn a scala-compiler.jar2.10.1-RC1, which apparently is not binary compatible. – 0__ Feb 15 at 23:59