TIKA-2067 upgrade maven plugin dependencies
Project: http://git-wip-us.apache.org/repos/asf/tika/repo Commit: http://git-wip-us.apache.org/repos/asf/tika/commit/8ff89d41 Tree: http://git-wip-us.apache.org/repos/asf/tika/tree/8ff89d41 Diff: http://git-wip-us.apache.org/repos/asf/tika/diff/8ff89d41 Branch: refs/heads/2.x Commit: 8ff89d4190b6a27d4db73b096fa86cd924083580 Parents: 164bf52 Author: tballison <[email protected]> Authored: Wed Sep 7 13:29:27 2016 -0400 Committer: tballison <[email protected]> Committed: Wed Sep 7 13:29:27 2016 -0400 ---------------------------------------------------------------------- tika-parent/pom.xml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tika/blob/8ff89d41/tika-parent/pom.xml ---------------------------------------------------------------------- diff --git a/tika-parent/pom.xml b/tika-parent/pom.xml index 5a431cb..a76d628 100644 --- a/tika-parent/pom.xml +++ b/tika-parent/pom.xml @@ -413,11 +413,12 @@ <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> - <version>2.3.4</version> + <version>3.2.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> + <!-- versions greater than this don't like System.exit calls in tika-batch --> <version>2.18.1</version> <configuration> <argLine>-Xmx2048m -Duser.timezone=UTC</argLine> @@ -426,12 +427,19 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> - <version>2.3</version> + <version>2.4.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> - <version>2.3.2</version> + <version>2.5.3</version> + <dependencies> + <dependency> + <groupId>org.apache.maven.scm</groupId> + <artifactId>maven-scm-provider-gitexe</artifactId> + <version>1.9.5</version> + </dependency> + </dependencies> </plugin> </plugins> </build>
