Skip to content

Instantly share code, notes, and snippets.

@artem-sh
Created November 27, 2012 17:09
Show Gist options
  • Save artem-sh/4155561 to your computer and use it in GitHub Desktop.
Save artem-sh/4155561 to your computer and use it in GitHub Desktop.
Maven configuration file
<build>
<testResources>
<testResource>
<directory>src/test/resources</directory>
</testResource>
<testResource>
<directory>src/test/java</directory>
<includes>
<include>**/*</include>
</includes>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</testResource>
</testResources>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment