diff options
author | Oliver Schrenk <oliver.schrenk@gmail.com> | 2013-11-15 20:10:11 +0100 |
---|---|---|
committer | Oliver Schrenk <oliver.schrenk@gmail.com> | 2013-11-15 20:10:11 +0100 |
commit | f2656a471618fd2d1d593b05d5bf05cc3cdd996b (patch) | |
tree | 67bf82c45e5a4c16c7161cbe774364e366bd6da9 | |
parent | f0f5e38db20332f55b95d938a55e98ae9b05bb3d (diff) | |
download | gitignore-f2656a471618fd2d1d593b05d5bf05cc3cdd996b.tar.gz gitignore-f2656a471618fd2d1d593b05d5bf05cc3cdd996b.zip |
Ignore files created by maven-release-plugin
Maven Release Plugin provides a standard mechanism to release project
artifacts.
During the various phases of the execution the plugin create various
files, especially if you do a dry run that allows you to see the changes
that the plugin will perform on your pom files
mvn release:prepare -D dryRun=true
It will create
- `release.properties` - copy of the properties to be used
- `pom.xml.releaseBackup` - the pom.xml prior to any changes
- `pom.xml.tag` - the pom.xml as it will look when tagged
- `pom.xml.next` - the pom.xml as it will look for the next iteration
-rw-r--r-- | Maven.gitignore | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Maven.gitignore b/Maven.gitignore index 6ca4036f..94eab12d 100644 --- a/Maven.gitignore +++ b/Maven.gitignore @@ -1,2 +1,5 @@ target/ - *.releaseBackup +pom.xml.tag +pom.xml.releaseBackup +pom.xml.next +release.properties |