Fix for problematic uploads to Apache Nexus
Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/bcd3c685 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/bcd3c685 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/bcd3c685 Branch: refs/heads/WICKET-5677 Commit: bcd3c685c8035e2508ad05272c231d0710c87b19 Parents: 9c4b847 Author: Martijn Dashorst <[email protected]> Authored: Fri Aug 22 17:18:11 2014 +0200 Committer: Martijn Dashorst <[email protected]> Committed: Fri Aug 22 17:18:11 2014 +0200 ---------------------------------------------------------------------- pom.xml | 9 +++++++++ 1 file changed, 9 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/bcd3c685/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index ce82aa1..2e4014f 100644 --- a/pom.xml +++ b/pom.xml @@ -598,6 +598,15 @@ <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <version>2.8.1</version> + <configuration> + <retryFailedDeploymentCount>10</retryFailedDeploymentCount> + <deployAtEnd>true</deployAtEnd> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>2.3.1</version> </plugin>
