From 04706d058a1e78fb711a20a16b93f2ced5dd6b28 Mon Sep 17 00:00:00 2001 From: Ben Fradet Date: Mon, 26 Jun 2017 16:48:14 +0100 Subject: [PATCH] Bump snowplow-scala-tracker to 0.3.0 (closes #92) --- project/BuildSettings.scala | 2 +- project/Dependencies.scala | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/project/BuildSettings.scala b/project/BuildSettings.scala index 6df0caf..1a45448 100644 --- a/project/BuildSettings.scala +++ b/project/BuildSettings.scala @@ -26,7 +26,7 @@ object BuildSettings { scalacOptions := Seq("-deprecation", "-encoding", "utf8", "-feature", "-target:jvm-1.7"), scalacOptions in Test := Seq("-Yrangepos"), - resolvers ++= Dependencies.resolutionRepos + resolvers ++= Dependencies.resolvers ) // Makes our SBT app settings available from within the app diff --git a/project/Dependencies.scala b/project/Dependencies.scala index f896434..886b8fa 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -13,10 +13,8 @@ import sbt._ object Dependencies { - - val resolutionRepos = Seq( + val resolvers = Seq( "Snowplow Analytics Maven releases repo" at "http://maven.snplow.com/releases/", - "Snowplow Analytics Maven snapshot repo" at "http://maven.snplow.com/snapshots/", "Twitter maven repo" at "http://maven.twttr.com/" ) @@ -36,7 +34,7 @@ object Dependencies { val scopt = "3.6.0" val json4s = "3.2.11" val scalaz7 = "7.2.13" - val snowplowTracker = "0.1.0" + val snowplowTracker = "0.3.0" // Scala (test only) val specs2 = "3.9.1" }