I run into a problem where I got two conflicting zio-test version in my project. And root cause was that
"dev.zio" %% "zio-aws-sqs" requiring the zio-mock as a non test dependency:
libraryDependencies += "dev.zio" %% "zio-mock" % zioMockLibraryVersion.value,
Could this be replaced with:
libraryDependencies += "dev.zio" %% "zio-mock" % zioMockLibraryVersion.value % Test,