Skip to content

Instantly share code, notes, and snippets.

@luisffc
Created September 29, 2014 19:33
Show Gist options
  • Save luisffc/4e0bdb2fcba9d905ba81 to your computer and use it in GitHub Desktop.
Save luisffc/4e0bdb2fcba9d905ba81 to your computer and use it in GitHub Desktop.
A Maven resource witch retrivies folder content depending on the envirolment
<resources>
<resource>
<directory>src/main/resources</directory>
<excludes>
<exclude>development/*</exclude>
<exclude>test/*</exclude>
<exclude>stage/*</exclude>
</excludes>
</resource>
<resource>
<directory>src/main/resources/${life.envname}</directory>
<includes>
<include>*.*</include>
</includes>
</resource>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment