Skip to content

Instantly share code, notes, and snippets.

@mwl
Created October 23, 2011 15:33
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 mwl/1307481 to your computer and use it in GitHub Desktop.
Save mwl/1307481 to your computer and use it in GitHub Desktop.
Maven CI build profile
<project ...>
...
<profiles>
<profile>
<id>ci</id>
<activation>
<property>
<name>env.USER</name>
<value>jenkins</value>
</property>
</activation>
<properties>
<cucumber.colors>--no-color</cucumber.colors>
</properties>
<build>
<defaultGoal>clean deploy</defaultGoal>
</build>
</profile>
</profiles>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment