Skip to content

Commit

Permalink
update Scala version to 2.11.8
Browse files Browse the repository at this point in the history
  • Loading branch information
larsrh committed Mar 27, 2016
1 parent 3e73524 commit 0d94371
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ version := "3.0"

organization := "ch.epfl.lara"

scalaVersion := "2.11.7"
val scalaVer = "2.11.8"

scalaVersion := scalaVer

scalacOptions ++= Seq(
"-deprecation",
Expand Down Expand Up @@ -35,12 +37,12 @@ resolvers ++= Seq(
val libisabelleVersion = "0.3"

libraryDependencies ++= Seq(
"org.scala-lang" % "scala-compiler" % "2.11.7",
"org.scala-lang" % "scala-compiler" % scalaVer,
"org.scalatest" %% "scalatest" % "2.2.4" % "test",
"com.typesafe.akka" %% "akka-actor" % "2.3.4",
"info.hupel" %% "libisabelle" % libisabelleVersion,
"info.hupel" %% "libisabelle-setup" % libisabelleVersion,
"org.slf4j" % "slf4j-nop" % "1.7.13",
"info.hupel" %% "libisabelle" % libisabelleVer,
"info.hupel" %% "libisabelle-setup" % libisabelleVer,
"org.ow2.asm" % "asm-all" % "5.0.4",
"com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.6.0-rc2",
"com.regblanc" %% "scala-smtlib" % "0.2"
Expand Down

0 comments on commit 0d94371

Please sign in to comment.