Skip to content
This repository has been archived by the owner on Jul 22, 2018. It is now read-only.

Commit

Permalink
Merge pull request #3 from nvollmar/master
Browse files Browse the repository at this point in the history
Special handling for scala 2.9.1-1
  • Loading branch information
Shadowfiend committed May 24, 2014
2 parents 661b355 + 71bf40b commit 7b3e63d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion build.sbt
Expand Up @@ -32,7 +32,14 @@ libraryDependencies <++= scalaVersion { sv =>
"javax.persistence" % "persistence-api" % "1.0" % "provided" ::
"javax.transaction" % "transaction-api" % "1.1" % "provided" ::
"org.hibernate" % "hibernate-entitymanager" % "3.4.0.GA" ::
"org.scala-libs" %% "scalajpa" % "1.5" ::
Nil
}

libraryDependencies <++= scalaVersion { sv =>
(sv match {
case "2.9.1-1" => "org.scala-libs" % "scalajpa_2.9.1" % "1.5"
case _ => "org.scala-libs" %% "scalajpa" % "1.5"
}) ::
Nil
}

Expand Down

0 comments on commit 7b3e63d

Please sign in to comment.