Skip to content

Commit

Permalink
Upgraded dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsa committed Oct 28, 2017
1 parent fe74d29 commit 623a8eb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ lazy val commonSettings =
"org.scala-lang" % "scala-library" % Versions.theScala,
"org.scala-lang" % "scala-reflect" % Versions.theScala,
"org.scala-lang.modules" %% "scala-xml" % "1.0.6",
"org.scalatest" %% "scalatest" % "3.0.1" % Test
"org.scalatest" %% "scalatest" % Versions.scalaTest % Test
)
) ++ directoriesLayoutSettings ++ Special.commonSettings

Expand All @@ -62,11 +62,11 @@ lazy val deps =
"com.jsuereth" %% "scala-arm" % "2.0",
"commons-io" % "commons-io" % "2.5",
"org.apache.commons" % "commons-math3" % "3.6.1",
"org.scalafx" %% "scalafx" % "8.0.102-R11",
"org.scalafx" %% "scalafx" % Versions.scalaFx,
// test libraries
"com.typesafe.akka" %% "akka-http-testkit" % Versions.akkaHttp % Test,
"com.typesafe.akka" %% "akka-testkit" % Versions.akka % Test,
"org.scalatest" %% "scalatest" % "3.0.1" % Test
"org.scalatest" %% "scalatest" % Versions.scalaTest % Test
)
)
.settings(Special.depsSettings: _*)
Expand Down
5 changes: 4 additions & 1 deletion project/Versions.scala
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,11 @@
*/

object Versions {
val theScala = "2.12.3"
val theScala = "2.12.4"

val akka = "2.5.6"
val akkaHttp = "10.0.10"
val scalaFx = "8.0.144-R12"

val scalaTest = "3.0.4"
}
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
# 3. This notice may not be removed or altered from any source distribution.
#

sbt.version = 1.0.2
sbt.version = 1.0.3

0 comments on commit 623a8eb

Please sign in to comment.