I have an xslt that I want to add to my jar file when I do the maven build. I read int he documentation you can add stuff in the resources folder, and it will get picked up, but what if I want it to show up in a different folder - how do I make it go there in the jar?

link|improve this question

69% accept rate
feedback

1 Answer

up vote 4 down vote accepted

If it's a JAR just add it in src/main/resources replicating the folder structure you want to be present in the JAR (the classpath root for a JAR is the very first level on it so it's easy).

In case of a WAR or other package types the method is very different

link|improve this answer
1  
I'll add that adding to a nested folder inside your JAR is usually not needed, unless your App is specifically looking for that resource in that structure (as opposed to the general CLASSPATH available to it) – Martijn Verburg Nov 9 '10 at 18:11
I agree karianna +1 – victor hugo Nov 9 '10 at 18:17
worked perfectly..thanks! – Derek Nov 9 '10 at 21:42
feedback

Your Answer

 
or
required, but never shown

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