11organization := " com.algolia"
22name := " algoliasearch-scala"
33description := " Scala client for Algolia Search API"
4- crossScalaVersions := Seq (" 2.11.12" , " 2.12.10" , " 2.13.6 " )
5- scalaVersion := " 2.13.6 "
4+ crossScalaVersions := Seq (" 2.11.12" , " 2.12.10" , " 2.13.8 " )
5+ scalaVersion := " 2.13.8 "
66Test / testOptions += Tests .Argument (" -P10" )
77publishMavenStyle := true
88Test / publishArtifact := false
@@ -24,7 +24,9 @@ developers += Developer(
2424 url(" https://github.com/algolia/algoliasearch-client-scala/" )
2525)
2626publishTo := sonatypePublishToBundle.value
27- pgpSigningKey := Credentials .forHost(credentials.value, " pgp" ).map(_.userName) // related to https://github.com/sbt/sbt-pgp/issues/170
27+ pgpSigningKey := Credentials
28+ .forHost(credentials.value, " pgp" )
29+ .map(_.userName) // related to https://github.com/sbt/sbt-pgp/issues/170
2830
2931lazy val root = project
3032 .in(file(" ." ))
@@ -42,21 +44,21 @@ lazy val root = project
4244// Project dependencies
4345libraryDependencies += " org.asynchttpclient" % " async-http-client" % " 2.12.3"
4446libraryDependencies += " io.netty" % " netty-resolver-dns" % " 4.1.45.Final"
45- libraryDependencies += " org.json4s" %% " json4s-ast" % " 3.6.7 "
46- libraryDependencies += " org.json4s" %% " json4s-core" % " 3.6.7 "
47- libraryDependencies += " org.json4s" %% " json4s-native" % " 3.6.7 "
48- libraryDependencies += " org.scala-lang.modules" %% " scala-collection-compat" % " 2.1.4 "
49- libraryDependencies += " org.slf4j" % " slf4j-api" % " 1.7.30 "
47+ libraryDependencies += " org.json4s" %% " json4s-ast" % " 4.0.5 "
48+ libraryDependencies += " org.json4s" %% " json4s-core" % " 4.0.5 "
49+ libraryDependencies += " org.json4s" %% " json4s-native" % " 4.0.5 "
50+ libraryDependencies += " org.scala-lang.modules" %% " scala-collection-compat" % " 2.7.0 "
51+ libraryDependencies += " org.slf4j" % " slf4j-api" % " 1.7.36 "
5052
5153// Related to https://snyk.io/vuln/SNYK-JAVA-IONETTY-1584063,
5254// To be removed when 'async-http-client' updates dependency version of 'netty-codec'
5355libraryDependencies += " io.netty" % " netty-codec" % " 4.1.68.Final"
5456
5557// Testing dependencies
56- libraryDependencies += " ch.qos.logback" % " logback-classic" % " 1.2.3 " % Test
58+ libraryDependencies += " ch.qos.logback" % " logback-classic" % " 1.2.11 " % Test
5759// libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.14.3" % Test
58- libraryDependencies += " org.scalamock" %% " scalamock" % " 4.4 .0" % Test
59- libraryDependencies += " org.scalatest" %% " scalatest" % " 3.1.0 " % Test
60+ libraryDependencies += " org.scalamock" %% " scalamock" % " 5.2 .0" % Test
61+ libraryDependencies += " org.scalatest" %% " scalatest" % " 3.2.11 " % Test
6062
6163scalacOptions ++= Seq (
6264 " -deprecation" ,
0 commit comments