I'm trying to import com.lambdaworks.crypto.SCryptUtil
(from crypto) in the Scala REPL. I'm running the REPL from the Java directory containing com/lambdaworks/crypto.
The REPL can't find com.lambdaworks.crypto.SCryptUtil
, but it can autocomplete up to com.lambdaworks.crypto
but can't find anything after that.
When I used the REPL in the IntelliJ IDEA after including the package in my project, I was able to find the SCryptUtil
class.
Am I missing some classpath parameters that are required for import?