Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThanh Ha2013-07-11 18:58:11 +0000
committerThanh Ha2013-07-11 18:58:11 +0000
commit9a393d0206a08ce987fbbe043b4ad63303ecfd80 (patch)
treebb8b705587102f93507e0427cf7b8593aed7207c
parent65a5161166092799db1248c66a5549e0d0dfd227 (diff)
downloadeclipse.platform.releng.aggregator-9a393d0206a08ce987fbbe043b4ad63303ecfd80.tar.gz
eclipse.platform.releng.aggregator-9a393d0206a08ce987fbbe043b4ad63303ecfd80.tar.xz
eclipse.platform.releng.aggregator-9a393d0206a08ce987fbbe043b4ad63303ecfd80.zip
Bug 401141 - [CBI] Inner jars are not signed in CBI based build
- Updated parent pom to pull in cbi-plugins 1.0.4-SNAPSHOT which has changes to the jarsigner to sign inner jars.
-rw-r--r--eclipse-platform-parent/pom.xml10
1 files changed, 9 insertions, 1 deletions
diff --git a/eclipse-platform-parent/pom.xml b/eclipse-platform-parent/pom.xml
index 1584d4410..33a572c17 100644
--- a/eclipse-platform-parent/pom.xml
+++ b/eclipse-platform-parent/pom.xml
@@ -23,7 +23,7 @@
<buildId>${buildType}${buildTimestamp}</buildId>
<tycho.version>0.18.0</tycho.version>
<tycho-extras.version>0.18.0</tycho-extras.version>
- <cbi-plugins.version>1.0.3</cbi-plugins.version>
+ <cbi-plugins.version>1.0.4-SNAPSHOT</cbi-plugins.version>
<!--
The tycho-eclipserun-plugin will create its instance of Eclipse from this
'eclipiserun-repo' repository, such as for computing .api-descriptions.
@@ -46,6 +46,7 @@
<cbi-jdt-repo.url>https://repo.eclipse.org/content/repositories/eclipse-staging/</cbi-jdt-repo.url>
<cbi-jdt-version>3.9.0.v20130604-1421</cbi-jdt-version>
<eclipse-repo.url>https://repo.eclipse.org/content/repositories/releases/</eclipse-repo.url>
+ <cbi-snapshots-repo.url>https://repo.eclipse.org/content/repositories/cbi-snapshots/</cbi-snapshots-repo.url>
<!-- this eclipse-p2-repo.url is specifically for the build individual bundles profile. -->
<eclipse-p2-repo.url>http://download.eclipse.org/eclipse/updates/4.4-I-builds</eclipse-p2-repo.url>
@@ -122,6 +123,13 @@
</snapshots>
</pluginRepository>
<pluginRepository>
+ <id>cbi-snapshots</id>
+ <url>${cbi-snapshots-repo.url}</url>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ </pluginRepository>
+ <pluginRepository>
<id>eclipse</id>
<url>${eclipse-repo.url}</url>
<releases>

Back to the top