Skip to content

Instantly share code, notes, and snippets.

@michaelajr
Created May 25, 2018 20:03
Show Gist options
  • Save michaelajr/f0c006340aaadc9b426dddc24c17dba4 to your computer and use it in GitHub Desktop.
Save michaelajr/f0c006340aaadc9b426dddc24c17dba4 to your computer and use it in GitHub Desktop.
Maven For Pipelining, Part 1
<profiles>
<profile>
<id>compile-with-debug</id>
...
<profile>
<id>enforce-dependency-blacklist</id>
<activation>
<file>
<exists>${basedir}/src</exists>
</file>
</activation>
...
<profile>
<id>generate-build-properties</id>
<activation>
<file>
<exists>${basedir}/src</exists>
</file>
</activation>
...
<profile>
<id>unit-test</id>
<activation>
<file>
<exists>${basedir}/src</exists>
</file>
</activation>
...
<profile>
<id>integration-test</id>
<activation>
<file>
<exists>${basedir}/src</exists>
</file>
</activation>
...
</profiles>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment