Skip to content

Instantly share code, notes, and snippets.

@przodownikR1
Created January 5, 2014 23:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save przodownikR1/8275438 to your computer and use it in GitHub Desktop.
Save przodownikR1/8275438 to your computer and use it in GitHub Desktop.
filtering_pom
<profiles>
<profile>
<id>weblogic</id>
<properties>
<environment>weblogic</environment>
</properties>
</profile>
<profile>
<id>jetty</id>
<properties>
<environment>jetty</environment>
</properties>
<profile>
</profiles>
<resources>
<resource>
<directory>${basedir}/src/main/resources/META-INF</directory>
<targetPath>META-INF</targetPath>
<filtering>true</filtering>
</resource>
<resource>
<directory>${basedir}/src/main/resources/${environment}/META-INF
</directory>
<targetPath>META-INF</targetPath>
<filtering>true</filtering>
</resource>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment