This relates to issues that I've started having with Slick out of nowhere (a Slick-dependant project broke due to Slick library issues without having changed any dependencies).
If I clone slick-pg and then run sbt update and sbt compile, Scala will complain that it cannot find scala.slick, if I change the offending import to slick.* from scala.slick.*, it will run in to another issues -- importing driver.api._ will cause name collisions, and make the Scala compiler very upset.
IntelliJ is no help in diagnosing the issue, as it does not believe that a good portion of the PostgresDriver packages even exist.
I was wondering if anybody else knew about this, and if so, if they had managed to fix it or had any thoughts on the matter.
This relates to issues that I've started having with Slick out of nowhere (a Slick-dependant project broke due to Slick library issues without having changed any dependencies).
If I clone
slick-pg
and then runsbt update
andsbt compile
, Scala will complain that it cannot findscala.slick
, if I change the offending import toslick.*
fromscala.slick.*
, it will run in to another issues -- importingdriver.api._
will cause name collisions, and make the Scala compiler very upset.IntelliJ is no help in diagnosing the issue, as it does not believe that a good portion of the PostgresDriver packages even exist.
I was wondering if anybody else knew about this, and if so, if they had managed to fix it or had any thoughts on the matter.