Reputation: 594
I am using play 2.1.4 and i want to add my external jar library in my project but that jar is further dependent on some maven dependencies, i have my external jar in /lib
folder. I want to include this jar from local repository (/lib) along with maven dependencies from maven repository through SBT
Upvotes: 1
Views: 2069
Reputation: 3294
You are trying to mix managed and unmanaged dependencies in SBT. http://www.scala-sbt.org/release/docs/Getting-Started/Library-Dependencies
You can:
Upvotes: 1