I'm having some difficulty including a directory into the jar maven is creating. I need the actual directory in the jar, not just the files in it. By using:

<resources>
 <resource>
  <directory>etc</directory>
 </resource>
</resources>

only the contents of the etc directory are included in the jar, not the actual directory. Is there a simple solution for this, ideally without using another plugin? Any feedback is appreciated. Thanks.

link|improve this question

62% accept rate
feedback

1 Answer

up vote 1 down vote accepted
<resources>
 <resource>
  <directory>.</directory>
  <includes>
    <include>etc/**/*.*</include>
  </includes>
 </resource>
</resources>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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