I've been scratching myself in the head for a little over an hour with this, nothing on Google seems to be able to give me a decisive answer.
I'm using IntelliJ IDEA 13.1.3
with the scala and sbt plugins, Scala 2.11.1
, and SBT 0.13
Thinking I was clever I added the Maven repository for LWJGL to my build.sbt
libraryDependencies += "org.lwjgl.lwjgl" % "lwjgl" % "2.9.1"
Only to later find out that I need to [point the compiler to the LWJGL natives].
Now here's the problem: Asking SBT to download libraries, doesn't put them in any of the project's directories, making the pointing to the libraries a tad difficult.
I tried using the [sbt-lwjgl-plugin] without any luck, even forcing an earlier version of SBT like the documentation suggests.
So I'm finding myself at an impasse, what am I supposed to do? Manually download the library and dump it into the project directories? Or is there a more automatic way for me to deal with this?