Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2011-06-04 00:48:13 +0000
committerMatthias Sohn2011-06-04 13:18:06 +0000
commit7bacd2cb4b21a94c521b3ad72e64d7a03925d366 (patch)
treed25cbf737cb22c015a73ebd8671e507b71a1f08a
parent63bc5e3c6edb47795e900f8d1dadbb0e41e64b25 (diff)
downloadegit-7bacd2cb4b21a94c521b3ad72e64d7a03925d366.tar.gz
egit-7bacd2cb4b21a94c521b3ad72e64d7a03925d366.tar.xz
egit-7bacd2cb4b21a94c521b3ad72e64d7a03925d366.zip
Temporarily update to signing plugin 1.0.1.2-SNAPSHOT
This version of the eclipse signing plugin has bugfixes needed to enable the Indigo aggregation build to properly consume the egit p2 repository. Also see [1]. [1] http://dev.eclipse.org/mhonarc/lists/cross-project-issues-dev/msg06044.html Bug: 347591 Bug: 347594 Change-Id: I955c13b85dfead9792ee49845db52bff0181adf5 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
-rw-r--r--pom.xml18
1 files changed, 17 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index 1076366513..6785a41893 100644
--- a/pom.xml
+++ b/pom.xml
@@ -158,6 +158,19 @@
<id>maven.eclipse.org</id>
<url>http://maven.eclipse.org/nexus/content/repositories/milestone-indigo</url>
</pluginRepository>
+ <!-- TODO: need 1.0.1.2-SNAPSHOT of the signing plugin until bugfix for
+ https://bugs.eclipse.org/bugs/show_bug.cgi?id=347591
+ is available in maven.eclipse.org -->
+ <pluginRepository>
+ <id>intalio-dash-signing-plugin</id>
+ <url>http://intalio.org/public/maven2</url>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ </pluginRepository>
</pluginRepositories>
<repositories>
@@ -294,7 +307,10 @@
<plugin>
<groupId>org.eclipse.dash.maven</groupId>
<artifactId>eclipse-maven-signing-plugin</artifactId>
- <version>1.0.1</version>
+ <!-- TODO: need 1.0.1.2-SNAPSHOT of the signing plugin until bugfix for
+ https://bugs.eclipse.org/bugs/show_bug.cgi?id=347591
+ is available in maven.eclipse.org -->
+ <version>1.0.1.2-SNAPSHOT</version>
</plugin>
</plugins>
</pluginManagement>

Back to the top