Created
June 1, 2013 06:07
-
-
Save gabrielbauman/5689446 to your computer and use it in GitHub Desktop.
A Maven profile that detects when the build is running on Heroku.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<profile> | |
<id>heroku</id> | |
<activation> | |
<activeByDefault>false</activeByDefault> | |
<property> | |
<name>env.HOME</name> | |
<value>/app</value> | |
</property> | |
</activation> | |
<!-- Do Heroku-specific stuff here --> | |
</profile> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment