Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

If a JAR is accompanied with a native DLL in Maven repo what do I need to put into my pom.xml to get that DLL into the packaging?

To be more specific take for example Jacob library. How do you make jacob-1.14.3-x64.dll go into the WEB-INF/lib folder after you run mvn package?

In our local Nexus repository we've got these definitions for JAR and DLL:

<dependency>
  <groupId>net.sf.jacob-project</groupId>
  <artifactId>jacob</artifactId>
  <version>1.16-M2</version>
</dependency>

<dependency>
  <groupId>net.sf.jacob-project</groupId>
  <artifactId>jacob</artifactId>
  <version>1.16-M2</version>
  <classifier>x64</classifier>
  <type>dll</type>
</dependency>

But putting the same dependencies to our project POM and running mvn package doesn't make DLL go to WEB-INF/lib, but JAR gets there fine.

What are we doing wrong?

share|improve this question
PS I know that jacob 1.14 is outdated -- it's just for example – Oleg Mikheev Jan 15 '12 at 21:59
2  
Does this not answer the question? – eis Jan 15 '12 at 23:07
How is the DLL stored in your repository? Does it use a classifier of DLL with packaging of POM? – Monty0018 Jan 16 '12 at 3:08
@eis unfortunately not - they decided to remove the need for the DLL :) – Oleg Mikheev Jan 16 '12 at 9:15
@Monty0018 updated my question – Oleg Mikheev Jan 16 '12 at 9:28
show 1 more comment

1 Answer

up vote 2 down vote accepted

For a DLL, you will need to use the Copy Dependencies MOJO.

You can filter out all dependencies other than the DLL and specify anywhere in your project structure to copy them to, including your target/webapp/WEB-INF/lib.

share|improve this answer
Great, thanks! Putting this mojo into prepare-package phase did the trick! – Oleg Mikheev Jan 17 '12 at 9:11
Can you show us the maven code ? – khalid lblid May 10 at 19:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.