Skip to content

Commit

Permalink
Update project & dependencies
Browse files Browse the repository at this point in the history
* sbt 0.13.12 → 0.13.13
* Plugins:
	* sbt-scoverage 1.3.5 → 1.5.0
	* sbt-site 1.0.0 → 1.2.0
* Dependencies
	* Akka 2.4.8 → 2.4.16
	* Kamon 0.6.2 → 0.6.5
	* Spray 1.3.3 → 1.3.4
	* ch.qos.logback/logback-classic 1.1.7 → 1.1.8
	* com.typesafe/config 1.3.0 → 1.3.1
	* org.scalatest/scalatest 3.0.0 → 3.0.1
  • Loading branch information
sattvik committed Jan 18, 2017
1 parent 71d26d4 commit 4b14b76
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 13 deletions.
17 changes: 7 additions & 10 deletions build.sbt
Expand Up @@ -19,26 +19,23 @@ scalacOptions ++= Seq(
"-unchecked"
)

val akkaVersion = "2.4.8"
val kamonVersion = "0.6.2"
val sprayVersion = "1.3.3"
val akkaVersion = "2.4.16"
val kamonVersion = "0.6.5"
val sprayVersion = "1.3.4"

libraryDependencies ++= Seq(
"com.typesafe" % "config" % "1.3.0",
"com.typesafe" % "config" % "1.3.1",
"io.kamon" %% "kamon-core" % kamonVersion,
"io.spray" %% "spray-can" % sprayVersion % "provided",
"io.spray" %% "spray-routing" % sprayVersion % "provided",
"org.scalatest" %% "scalatest" % "3.0.0" % "test",
"ch.qos.logback" % "logback-classic" % "1.1.7" % "test",
"org.scalatest" %% "scalatest" % "3.0.1" % "test",
"ch.qos.logback" % "logback-classic" % "1.1.8" % "test",
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion % "test",
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % "test"
)

dependencyOverrides := Set(
"org.scala-lang" % "scala-library" % scalaVersion.value,
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
"org.scala-lang.modules" %% "scala-xml" % "1.0.4",
"com.typesafe.akka" %% "akka-actor" % akkaVersion
"com.typesafe" % "config" % "1.3.1"
)

fork in Test := true
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
@@ -1 +1 @@
sbt.version = 0.13.12
sbt.version = 0.13.13
4 changes: 2 additions & 2 deletions project/plugins.sbt
@@ -1,11 +1,11 @@
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.3")

addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.3.5")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.0")

addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.1.0")

addSbtPlugin("me.lessis" % "bintray-sbt" % "0.3.0")

addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.0.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.2.0")

addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.5.4")

0 comments on commit 4b14b76

Please sign in to comment.