Hi,
I tried loading this librairy with eclipse indigo, maven 3.0.4 and m2eclispe 1.0.200.20111228-1245 by adding
<dependencies>
<dependency>
<groupId>org.lwjgl.lwjgl</groupId>
<artifactId>lwjgl</artifactId>
<version>2.8.1</version>
</dependency>
<dependency>
<groupId>org.lwjgl.lwjgl</groupId>
<artifactId>lwjgl_util</artifactId>
<version>2.8.1</version>
</dependency>
</dependencies>
to my POM.xml and it didn't work, no surprise, the native dll were not included.
So I added them myself but it's still buging, maven is automatically removing those path right after I inputed them D:

so obvioiusly eclipse is not happy
Exception in thread "main" java.lang.UnsatisfiedLinkError: no lwjgl in java.library.path
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1734)
at java.lang.Runtime.loadLibrary0(Runtime.java:823)
at java.lang.System.loadLibrary(System.java:1028)
at org.lwjgl.Sys$1.run(Sys.java:73)
at java.security.AccessController.doPrivileged(Native Method)
at org.lwjgl.Sys.doLoadLibrary(Sys.java:66)
at org.lwjgl.Sys.loadLibrary(Sys.java:95)
at org.lwjgl.Sys.<clinit>(Sys.java:112)
at org.lwjgl.opengl.Display.<clinit>(Display.java:135)
at runnable.Tut05.createWindow(Tut05.java:157)
at runnable.Tut05.init(Tut05.java:177)
at runnable.Tut05.run(Tut05.java:32)
at runnable.Tut05.main(Tut05.java:24)
Do you know if there is any way to use maven in a way to automatically manage those native dll?
Any Idea how to not allow maven to delete my path?
thanks =D