File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/models Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,8 @@ goPluginVersion=231.8109.175
2525junit5Version =5.8.2
2626junit4Version =4.13.2
2727junit4PlatformVersion =1.9.0
28- mockitoVersion =5.2.0
28+ # NOTE: Mockito versions 5+ are not compatible with Java 8: https://www.davidvlijmincx.com/posts/upgrade-to-mockito-5
29+ mockitoVersion =4.11.0
2930mockitoInlineVersion =5.2.0
3031ksmtVersion =0.4.3
3132sootVersion =4.4.0-FORK-2
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ fun jUnit5ParametrizedTestsLibraryDescriptor(versionInProject: Version?): Extern
3636}
3737
3838fun mockitoCoreLibraryDescriptor (versionInProject : Version ? ): ExternalLibraryDescriptor {
39- val preferredVersion = if (versionInProject?.hasNumericOrEmptyPatch() == true ) versionInProject?.plainText else " 5.2 .0"
39+ val preferredVersion = if (versionInProject?.hasNumericOrEmptyPatch() == true ) versionInProject?.plainText else " 4.11 .0"
4040 return ExternalLibraryDescriptor (
4141 " org.mockito" , " mockito-core" ,
4242 " 3.5.0" , null , preferredVersion
You can’t perform that action at this time.
0 commit comments