Reputation: 2847
Is there any kind of centralized directory for library paths for Build.sbt
or some standard discovery method? For example, I currently need to use javax.crypto
in my Scala project and I have no idea what path to write in my Build.sbt
Upvotes: 3
Views: 705
Reputation: 1285
sbt uses the standard Maven2 repository by default. If your dependency isn't on one of the default repositories, you'll have to add a resolver to help Ivy find it.
Source: http://www.scala-sbt.org/0.13.1/docs/Getting-Started/Library-Dependencies.html#resolvers
Upvotes: 2