Upgrade maven-release-plugin and maven-scm-plugin. - See MPOM-55. - Fixes future issues with using Git along with releasing/tagging/etc.
Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/38c04689 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/38c04689 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/38c04689 Branch: refs/heads/master Commit: 38c04689d6cb1a663d213eebd1a5c9feca436e80 Parents: 41c6f80 Author: Matt Sicker <[email protected]> Authored: Fri Aug 29 21:53:02 2014 -0500 Committer: Matt Sicker <[email protected]> Committed: Fri Aug 29 21:53:02 2014 -0500 ---------------------------------------------------------------------- pom.xml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/38c04689/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index fa45c8b..4851f68 100644 --- a/pom.xml +++ b/pom.xml @@ -170,6 +170,8 @@ <rat.plugin.version>0.10</rat.plugin.version> <pdf.plugin.version>1.2</pdf.plugin.version> <cobertura.plugin.version>2.5.2</cobertura.plugin.version> + <release.plugin.version>2.5</release.plugin.version> + <scm.plugin.version>1.9.1</scm.plugin.version> <manifestfile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestfile> <maven.compile.source>1.6</maven.compile.source> <maven.compile.target>1.6</maven.compile.target> @@ -629,7 +631,12 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> - <version>2.2.2</version> + <version>${release.plugin.version}</version> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-scm-plugin</artifactId> + <version>${scm.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId>
