Skip to content

Commit 0057f82

Browse files
committed
Updated to Kafka 0.10.2.0 and various libraries.
1 parent ace1f64 commit 0057f82

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

build.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ import sbtrelease.Version
22

33
parallelExecution in ThisBuild := false
44

5-
val kafkaVersion = "0.10.1.1"
6-
val akkaVersion = "2.4.14"
5+
val kafkaVersion = "0.10.2.0"
6+
val akkaVersion = "2.4.17"
77

88
val slf4jLog4jOrg = "org.slf4j"
99
val slf4jLog4jArtifact = "slf4j-log4j12"
1010

1111
lazy val commonSettings = Seq(
1212
organization := "net.manub",
13-
scalaVersion := "2.11.8",
13+
scalaVersion := "2.12.1",
1414
crossScalaVersions := Seq("2.12.1", "2.11.8"),
1515
homepage := Some(url("https://github.com/manub/scalatest-embedded-kafka")),
1616
parallelExecution in Test := false,
@@ -24,7 +24,7 @@ lazy val commonLibrarySettings = libraryDependencies ++= Seq(
2424
"org.scalatest" %% "scalatest" % "3.0.1",
2525
"org.apache.kafka" %% "kafka" % kafkaVersion exclude(slf4jLog4jOrg, slf4jLog4jArtifact),
2626
"org.apache.zookeeper" % "zookeeper" % "3.4.8" exclude(slf4jLog4jOrg, slf4jLog4jArtifact),
27-
"org.apache.avro" % "avro" % "1.7.7" exclude(slf4jLog4jOrg, slf4jLog4jArtifact),
27+
"org.apache.avro" % "avro" % "1.8.1" exclude(slf4jLog4jOrg, slf4jLog4jArtifact),
2828
"com.typesafe.akka" %% "akka-actor" % akkaVersion % Test,
2929
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % Test
3030
)

project/plugins.sbt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
addSbtPlugin("me.lessis" % "bintray-sbt" % "0.3.0")
22

3-
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.3")
3+
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.4")
44

5-
addSbtPlugin("com.geirsson" % "sbt-scalafmt" % "0.4.5")
6-
7-
addSbtPlugin("io.get-coursier" % "sbt-coursier" % "1.0.0-M14-3")
5+
addSbtPlugin("com.geirsson" % "sbt-scalafmt" % "0.5.6")

0 commit comments

Comments
 (0)