Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ resolvers += "Typesafe Releases" at "https://repo.typesafe.com/typesafe/releases

val akkaVersion = "2.6.19"

val scalaCheck = "org.scalacheck" %% "scalacheck" % "1.15.4"
val specs2 = "org.specs2" %% "specs2-core" % "4.17.0"
val scalaTest = "org.scalatest" %% "scalatest" % "3.2.14"
val mockito = "org.mockito" % "mockito-core" % "4.6.1"
val scalaTestMockito = "org.scalatestplus" %% "mockito-4-6" % "3.2.14.0"
val scalaCheck = "org.scalacheck" %% "scalacheck" % "1.19.0"
val specs2 = "org.specs2" %% "specs2-core" % "4.23.0"
val scalaTest = "org.scalatest" %% "scalatest" % "3.2.18"
val mockito = "org.mockito" % "mockito-core" % "4.11.0"
val scalaTestMockito = "org.scalatestplus" %% "mockito-4-11" % "3.2.18.0"
val akkaStreamTestKit = "com.typesafe.akka" %% "akka-stream-testkit" % akkaVersion

val snakeYaml = "org.yaml" % "snakeyaml" % "2.5"
Expand All @@ -21,7 +21,7 @@ val akka = "com.typesafe.akka" %% "akka-actor" % akkaVersion

// Skuber uses akka logging, so the examples config uses the akka slf4j logger with logback backend
val akkaSlf4j = "com.typesafe.akka" %% "akka-slf4j" % akkaVersion
val logback = "ch.qos.logback" % "logback-classic" % "1.4.4" % Runtime
val logback = "ch.qos.logback" % "logback-classic" % "1.5.20" % Runtime

// the Json formatters are based on Play Json
val playJson = "com.typesafe.play" %% "play-json" % "2.9.3"
Expand Down
225 changes: 0 additions & 225 deletions client/src/it/scala/skuber/CustomResourceBetaSpec.scala

This file was deleted.

2 changes: 1 addition & 1 deletion client/src/test/scala/skuber/api/WatchSourceSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ class WatchSourceSpec extends Specification with MockitoSugar {
.expectError()

error must haveClass[FramingException]
error.getMessage mustEqual "Invalid JSON encountered at position [0] of [ByteString(98, 97, 100, 32, 105, 110, 112, 117, 116)]"
error.getMessage must startWith("Invalid JSON encountered at position [0] of ")

verify(client, times(2)).logConfig
verify(client).buildRequest(
Expand Down
8 changes: 4 additions & 4 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "1.2.0")
addSbtPlugin("com.github.sbt" % "sbt-git" % "2.0.0")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.13")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.3.1")
addSbtPlugin("com.github.sbt" % "sbt-git" % "2.1.0")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.12.2")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.3.1")