Open VladKopanev opened 3 years ago
Thanks for reporting this. You are right, ScalaPB dependency should not be included in the monix-redis
artifact. The dependency is just used in tests so we need to avoid that.
For the time being, I think you could either force using 0.9.4
in your project or excluding the one that comes along with monix?
Yeah, no problems, I just added excludeAll(ExclusionRule(organization = "com.thesamet.scalapb")
to my monix-redis
dependency and it works fine.
Great!
We are trying to use
monix-redis
version 0.6.0-RC-1 in our project, but at the same time, our project is dependent onscalapb-runtime
version 0.9.4 which is binary incompatible withscalapb-runtime
version 0.10.1 which is brought bymonix-redis
dependency, hence errors in runtime. I thinkmonix-redis
should exclude anyscalapb
dependency because why have them?