Book Image

Apache Maven Cookbook

Book Image

Apache Maven Cookbook

Overview of this book

Table of Contents (18 chapters)
Apache Maven Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Including and excluding additional resources


There are many situations where you will need to include additional resource files or folders for compilation or testing. You might also have to exclude specific files or folders. Let us see how we can do this.

Getting ready

Maven is set up on your system and is verified for work. To do this, refer to the first three recipes of Chapter 1, Getting Started.

How to do it...

  1. Open one of the Maven projects for which we need to include or exclude files or folders; for instance, project-with-include-exclude.

  2. Add the following to the build section of your pom file:

    <resources>
          <resource>
            <directory>src/resources/xml</directory>
            <includes>
              <include>*.xml</include>
            </includes>
          </resource>
          <resource>
            <directory>src/resources/json</directory>
            <includes>
              <include>include.json</include>
            &lt...