A POM dependency contains native libraries (DLLs inside a JAR file). How do I programmatically look up the path of the downloaded JAR file so I can pass it into "java.library.path"?
|
Since
An alternative would be to unpack the dependency, for example using |
|||
|
|
|
Answering my own question: http://web.archive.org/web/20120308042202/http://www.buildanddeploy.com/node/17 In short, you can use the maven-dependency-plugin:unpack goal to extract the libraries into a known path, and pass that into
|
||||
|
You can use the maven dependency plugin to copy the artifacts to a predefined path: http://maven.apache.org/plugins/maven-dependency-plugin/examples/copying-artifacts.html |
|||
|
|
|
If the DLL is inside the JAR, then you will need to copy it out to a directory before it can be loaded. (JARs that include native libraries usually do this themselves.) If your JAR isn't doing this, then you can use Class.getResourceAsStream() and write this to a directory that you've added to the For an example of this, see loadNativeLibrary in JNA. It uses this technique to load it's own library (a JNI library) from a JAR. |
|||||
|