Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2011-06-09 20:53:40 +0000
committerMatthias Sohn2011-06-09 20:53:40 +0000
commitb1c0ab84225c0978146b7b661d0fe0c5ca3a5a7a (patch)
treee44fc7cac96b2a93ffb711be3042c9c339253882 /pom.xml
parent8c1845933588bbb2d3bb88ca09056d8592a0d4ff (diff)
downloadegit-github-b1c0ab84225c0978146b7b661d0fe0c5ca3a5a7a.tar.gz
egit-github-b1c0ab84225c0978146b7b661d0fe0c5ca3a5a7a.tar.xz
egit-github-b1c0ab84225c0978146b7b661d0fe0c5ca3a5a7a.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]. Also move definition of plugin version to pluginManagement section in parent pom.xml. [1] http://dev.eclipse.org/mhonarc/lists/cross-project-issues-dev/msg06044.html Bug: 347591 Bug: 347594 Change-Id: I4129f8929094f318931e2c92bb5cafafb155f39e Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml25
1 files changed, 23 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index e700acbd..1c0f28d6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -87,6 +87,19 @@
<id>maven.eclipse.org</id>
<url>http://maven.eclipse.org/nexus/content/repositories/nightly-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>
<build>
@@ -180,8 +193,16 @@
</execution>
</executions>
</plugin>
- </plugins>
- </pluginManagement>
+ <plugin>
+ <groupId>org.eclipse.dash.maven</groupId>
+ <artifactId>eclipse-maven-signing-plugin</artifactId>
+ <!-- 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>
<sourceDirectory>src/</sourceDirectory>
</build>

Back to the top