Skip to content

Instantly share code, notes, and snippets.

@britter
Last active January 3, 2016 11:58
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 britter/f179f1113382a8de957c to your computer and use it in GitHub Desktop.
Save britter/f179f1113382a8de957c to your computer and use it in GitHub Desktop.
Profile for running the buildnumber-maven-plugin when not running on Heroku
<profile>
<id>local</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>create</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment