Skip to content

Commit

Permalink
Merge pull request phaller#135 from phaller/issue/upgrade-dependencies
Browse files Browse the repository at this point in the history
Upgrade build dependencies
  • Loading branch information
phaller authored Mar 30, 2018
2 parents d7f998c + 04d16c2 commit 3c3206d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ lazy val npv: Project = (project in file("monte-carlo-npv")).
settings(commonSettings: _*).
settings(
name := "reactive-async-npv",
libraryDependencies += opalCommon,
scalacOptions += "-feature"
).
dependsOn(core)
Expand Down
8 changes: 4 additions & 4 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import sbt._

object Dependencies {
lazy val scalaTest = "org.scalatest" %% "scalatest" % "3.0.4" % "test"
lazy val opalCommon = "de.opal-project" % "common_2.12" % "1.0.0"
lazy val opalAI = "de.opal-project" % "abstract-interpretation-framework_2.12" % "1.0.0"
lazy val scalaMeter = "com.storm-enroute" %% "scalameter" % "0.8.2"
lazy val scalaTest = "org.scalatest" %% "scalatest" % "3.0.5" % "test"
lazy val opalCommon = "de.opal-project" %% "common" % "1.0.0"
lazy val opalAI = "de.opal-project" %% "abstract-interpretation-framework" % "1.0.0"
lazy val scalaMeter = "com.storm-enroute" %% "scalameter" % "0.9"
}
2 changes: 1 addition & 1 deletion project/Util.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
object Util {
val buildScalaVersion = System.getProperty("scala.version", "2.12.4")
val buildScalaVersion = System.getProperty("scala.version", "2.12.5")
val javaVersion = System.getProperty("java.version")
}

0 comments on commit 3c3206d

Please sign in to comment.