Add lib dir to IntelliJ for unmanaged sbt dependencies

intellij-idea, jar, sbt, scala

Solution

You have to add these manually:

- Menu File - Project structure

- Left side: Select "Modules"

- Right side: Select "Dependencies tab"

- Click "+"

- Choose "Jars or directories"

Problem

sbt allows manually copying in jars to `lib/` - it will find and use these unmanaged dependencies. IntelliJ, though, can't seem to find anything I put it that dir. How can I tell it to use them?

Original source

Related problems