Skip to content

Instantly share code, notes, and snippets.

@emartynov
Last active December 15, 2015 20:18
Show Gist options
  • Save emartynov/5317097 to your computer and use it in GitHub Desktop.
Save emartynov/5317097 to your computer and use it in GitHub Desktop.
Filtering resources
<resources>
<resource>
<directory>res</directory>
<targetPath>${project.build.directory}/filtered-res</targetPath>
</resource>
<resource>
<directory>assets</directory>
<targetPath>${project.build.directory}/filtered-assets</targetPath>
</resource>
<resource>
<directory>environments/${environment}/res</directory>
<targetPath>${project.build.directory}/filtered-res</targetPath>
</resource>
<resource>
<directory>environments/${environment}/assets</directory>
<targetPath>${project.build.directory}/filtered-assets</targetPath>
</resource>
<resource>
<directory>brands/${brand}/res</directory>
<targetPath>${project.build.directory}/filtered-res</targetPath>
</resource>
<resource>
<directory>brands/${brand}/assets</directory>
<targetPath>${project.build.directory}/filtered-assets</targetPath>
</resource>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment