Skip to content

Commit

Permalink
Bumped referer-parser to 0.2.0 (#864)
Browse files Browse the repository at this point in the history
Added missing Base64 dependency for scala-hadoop-enrich tests /cc @fblundun
Updated expected scala-common-enrich version for tests from 0.5.0-SNAPSHOT to 0.5.0
  • Loading branch information
alexanderdean committed Jul 16, 2014
1 parent 40b8d69 commit 1fdd201
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions 3-enrich/scala-common-enrich/project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ object Dependencies {
val argonaut = "6.0.3"
val snowplowRawEvent = "0.1.0"
val scalaUtil = "0.1.0"
val refererParser = "0.2.0"
val refererParser = "0.2.1"
val maxmindIplookups = "0.1.0"
val json4s = "3.2.11-SNAPSHOT"
val igluClient = "0.1.0"
Expand All @@ -71,7 +71,7 @@ object Dependencies {
val argonaut = "io.argonaut" %% "argonaut" % V.argonaut
val snowplowRawEvent = "com.snowplowanalytics" % "snowplow-thrift-raw-event" % V.snowplowRawEvent
val scalaUtil = "com.snowplowanalytics" % "scala-util" % V.scalaUtil
val refererParser = "com.snowplowanalytics" % "referer-parser" % V.refererParser
val refererParser = "com.snowplowanalytics" %% "referer-parser" % V.refererParser
val maxmindIplookups = "com.snowplowanalytics" %% "scala-maxmind-iplookups" % V.maxmindIplookups
val json4sJackson = "org.json4s" %% "json4s-jackson" % V.json4s
val json4sScalaz = "org.json4s" %% "json4s-scalaz" % V.json4s
Expand Down
2 changes: 2 additions & 0 deletions 3-enrich/scala-hadoop-enrich/project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ object Dependencies {
// Scala (test only)
val specs2 = "1.14"
val scalazSpecs2 = "0.1.2"
val commonsCodec = "1.5"
}

object Libraries {
Expand All @@ -51,5 +52,6 @@ object Dependencies {
// Scala (test only)
val specs2 = "org.specs2" %% "specs2" % V.specs2 % "test"
val scalazSpecs2 = "org.typelevel" %% "scalaz-specs2" % V.scalazSpecs2 % "test"
val commonsCodec = "commons-codec" % "commons-codec" % V.commonsCodec % "test"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ object SnowplowHadoopEnrichBuild extends Build {
Libraries.commonEnrich,
// Scala (test only)
Libraries.specs2,
Libraries.scalazSpecs2
Libraries.scalazSpecs2,
Libraries.commonsCodec
)
)
}
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ object JobSpecHelpers {
/**
* The current version of our Hadoop ETL
*/
val EtlVersion = "hadoop-0.6.0-common-0.5.0-SNAPSHOT"
val EtlVersion = "hadoop-0.6.0-common-0.5.0"

val EtlTimestamp = "2001-09-09 01:46:40.000"

Expand Down

0 comments on commit 1fdd201

Please sign in to comment.