IntelliJ IDEA shows unresolved dependency in build.sbt even though it is available

I added a library dependency for my project:

libraryDependencies += "io.continuum.bokeh" %% "bokeh" % "0.7" 

This is correctly resolved when rebooting sbt, but IDEA marks the dependency as unresolved. I can also use material out of dependency. I already tried to invalidate the cache, clean and rebuild, but the error does not disappear.

Is this a mistake or am I missing something?

+5
source share

Source: https://habr.com/ru/post/1243853/


All Articles