Skip to content

Commit

Permalink
Merge pull request #68 from kenshoo/promote_version
Browse files Browse the repository at this point in the history
promote version
  • Loading branch information
rannisim committed Oct 22, 2017
2 parents c895dc9 + 204b568 commit 3c94824
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,17 @@ organization:= "com.kenshoo"

name := "metrics-play"

version := "2.6.2_0.6.1"

scalaVersion := "2.12.3"

crossScalaVersions := Seq("2.12.3", "2.11.11")
crossScalaVersions := Seq(scalaVersion.value, "2.11.11")

val playVersion = "2.6.6"

val metricsPlayVersion = "0.6.2"

version := s"${playVersion}_${metricsPlayVersion}"



scalacOptions := Seq("-unchecked", "-deprecation")

Expand All @@ -25,7 +31,7 @@ libraryDependencies ++= Seq(
"io.dropwizard.metrics" % "metrics-json" % "3.2.4",
"io.dropwizard.metrics" % "metrics-jvm" % "3.2.4",
"io.dropwizard.metrics" % "metrics-logback" % "3.2.4",
"com.typesafe.play" %% "play" % "2.6.6" % "provided",
"com.typesafe.play" %% "play" % playVersion % "provided",
"org.joda" % "joda-convert" % "1.8.2",
//test
"com.typesafe.play" %% "play-test" % "2.6.2" % "test",
Expand Down

0 comments on commit 3c94824

Please sign in to comment.