Skip to content

Commit da49cee

Browse files
ElfoLiNkmanub
authored andcommitted
Upgrade Scala Version Travis and minor version upgrade of dependencies (#90)
1 parent a5a9afd commit da49cee

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ jdk:
44
- oraclejdk8
55

66
scala:
7-
- 2.11.8
8-
- 2.12.1
7+
- 2.11.11
8+
- 2.12.3
99

1010
sudo: false
1111

build.sbt

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

33
parallelExecution in ThisBuild := false
44

5-
val kafkaVersion = "0.11.0.0"
6-
val zookeeperVersion = "3.4.9"
7-
val akkaVersion = "2.4.17"
5+
val kafkaVersion = "0.11.0.1"
6+
val zookeeperVersion = "3.4.10"
7+
val akkaVersion = "2.4.20"
88

99
val slf4jLog4jOrg = "org.slf4j"
1010
val slf4jLog4jArtifact = "slf4j-log4j12"
@@ -22,10 +22,10 @@ lazy val commonSettings = Seq(
2222
)
2323

2424
lazy val commonLibrarySettings = libraryDependencies ++= Seq(
25-
"org.scalatest" %% "scalatest" % "3.0.1",
25+
"org.scalatest" %% "scalatest" % "3.0.4",
2626
"org.apache.kafka" %% "kafka" % kafkaVersion exclude(slf4jLog4jOrg, slf4jLog4jArtifact),
2727
"org.apache.zookeeper" % "zookeeper" % zookeeperVersion exclude(slf4jLog4jOrg, slf4jLog4jArtifact),
28-
"org.apache.avro" % "avro" % "1.8.1" exclude(slf4jLog4jOrg, slf4jLog4jArtifact),
28+
"org.apache.avro" % "avro" % "1.8.2" exclude(slf4jLog4jOrg, slf4jLog4jArtifact),
2929
"com.typesafe.akka" %% "akka-actor" % akkaVersion % Test,
3030
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % Test,
3131
slf4jLog4jOrg % slf4jLog4jArtifact % "1.7.25" % Test
@@ -72,7 +72,7 @@ lazy val embeddedKafka = (project in file("embedded-kafka"))
7272
.settings(publishSettings: _*)
7373
.settings(commonSettings: _*)
7474
.settings(commonLibrarySettings)
75-
.settings(libraryDependencies += "org.mockito" % "mockito-core" % "2.7.14" % Test)
75+
.settings(libraryDependencies += "org.mockito" % "mockito-core" % "2.7.22" % Test)
7676
.settings(releaseSettings: _*)
7777

7878
lazy val kafkaStreams = (project in file("kafka-streams"))

0 commit comments

Comments
 (0)