Created
May 25, 2018 20:03
-
-
Save michaelajr/f0c006340aaadc9b426dddc24c17dba4 to your computer and use it in GitHub Desktop.
Maven For Pipelining, Part 1
This file contains hidden or 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
<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
https://medium.com/eonian-technologies/maven-for-pipelining-part-1-8b850d10a7ee