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

I have an images folder at src/main/webap/images which I'd like to exclude from my war. Here is my war plugin configuration:

  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-war-plugin</artifactId>
    <configuration>
      <version>2.0</version>
      <warName>UNAB</warName>
      <webXml>src/main/webapp/WEB-INF/web.xml</webXml>
      <webResources>
       <resource>
          <directory>src/main/webapp/</directory>
          <excludes>
            <exclude>images/*</exclude>
          </excludes>
        </resource>
      </webResources>
    </configuration>
  </plugin>

This isn't working. The images folder winds up in the war. Any troubleshooting tips for me?

share|improve this question
possible duplicate of maven2: excluding directory from WAR – Pascal Thivent Sep 28 '10 at 18:24
Have a look at the above linked question, it describes exactly why your solution doesn't work and how you should configure the plugin to get it working. – Pascal Thivent Sep 28 '10 at 18:25
Thanks Pascal. I'll take a look. – morgancodes Sep 28 '10 at 19:15

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.