Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

1 Answer

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

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.