Skip to content

Instantly share code, notes, and snippets.

@iesen
Last active December 31, 2015 20:09
Show Gist options
  • Save iesen/8038387 to your computer and use it in GitHub Desktop.
Save iesen/8038387 to your computer and use it in GitHub Desktop.
...
<profiles>
<profile>
<id>production</id>
<properties>
<spring.profiles.active>production</spring.profiles.active>
</properties>
</profile>
<profile>
<id>development</id>
<properties>
<spring.profiles.active>development</spring.profiles.active>
</properties>
</profile>
</profiles>
<build>
<resources>
<resource>
<directory>${basedir}/src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
...
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment