Skip to content

Commit 3bc7eec

Browse files
committed
Dependency updates
1 parent d100a7b commit 3bc7eec

File tree

2 files changed

+10
-12
lines changed

2 files changed

+10
-12
lines changed

analyzer/src/test/scala/com/avsystem/commons/analyzer/ImplicitTypesTest.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package analyzer
44
import org.scalatest.funsuite.AnyFunSuite
55

66
class ImplicitTypesTest extends AnyFunSuite with AnalyzerTest {
7-
ignore("implicit definitions without explicit types should be rejected") {
7+
test("implicit definitions without explicit types should be rejected") {
88
assertErrors(2,
99
"""
1010
|object whatever {

project/Commons.scala

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,25 +23,24 @@ object Commons extends ProjectGroup("commons") {
2323
// option in IntelliJ's SBT settings.
2424
val forIdeaImport: Boolean = System.getProperty("idea.managed", "false").toBoolean && System.getProperty("idea.runid") == null
2525

26-
val collectionCompatVersion = "2.5.0"
27-
val guavaVersion = "31.1-jre"
26+
val collectionCompatVersion = "2.11.0"
27+
val guavaVersion = "32.1.1-jre"
2828
val jsr305Version = "3.0.2"
29-
val scalatestVersion = "3.2.12"
30-
val scalatestplusScalacheckVersion = "3.2.12.0"
31-
val scalacheckVersion = "1.16.0"
29+
val scalatestVersion = "3.2.16"
30+
val scalatestplusScalacheckVersion = "3.2.14.0"
31+
val scalacheckVersion = "1.17.0"
3232
val jettyVersion = "9.4.51.v20230217"
33-
val mongoVersion = "4.9.1"
33+
val mongoVersion = "4.10.1"
3434
val springVersion = "5.3.28"
3535
val typesafeConfigVersion = "1.4.2"
3636
val commonsIoVersion = "1.3.2" // test only
3737
val scalaLoggingVersion = "3.9.5"
3838
val akkaVersion = "2.6.19"
3939
val monixVersion = "3.4.1"
4040
val monixBioVersion = "1.2.0"
41-
val mockitoVersion = "3.9.0"
42-
val circeVersion = "0.13.0" // benchmark only
43-
val upickleVersion = "1.3.11" // benchmark only
44-
val scalajsBenchmarkVersion = "0.9.0"
41+
val circeVersion = "0.14.5" // benchmark only
42+
val upickleVersion = "3.1.2" // benchmark only
43+
val scalajsBenchmarkVersion = "0.10.0"
4544
val slf4jVersion = "1.7.36"
4645

4746
// for binary compatibility checking
@@ -161,7 +160,6 @@ object Commons extends ProjectGroup("commons") {
161160
"org.scalatest" %%% "scalatest" % scalatestVersion % Test,
162161
"org.scalacheck" %%% "scalacheck" % scalacheckVersion % Test,
163162
"org.scalatestplus" %%% "scalacheck-1-16" % scalatestplusScalacheckVersion % Test,
164-
"org.mockito" % "mockito-core" % mockitoVersion % Test,
165163
),
166164
ideBasePackages := Seq(organization.value),
167165
Compile / ideOutputDirectory := Some(target.value.getParentFile / "out/production"),

0 commit comments

Comments
 (0)