Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2013-08-29 18:35:44 +0000
committerDavid Williams2013-08-29 18:35:44 +0000
commit3fedc4f864fffad44f0c5f8994988cf48d684268 (patch)
tree0256b0e774ae972753cadefdc56e30a327b3a4e7 /eclipse-platform-parent/pom.xml
parent4a8afaa3aeb226699afde88aa645b0aaf92245b5 (diff)
downloadeclipse.platform.releng.aggregator-3fedc4f864fffad44f0c5f8994988cf48d684268.tar.gz
eclipse.platform.releng.aggregator-3fedc4f864fffad44f0c5f8994988cf48d684268.tar.xz
eclipse.platform.releng.aggregator-3fedc4f864fffad44f0c5f8994988cf48d684268.zip
Bug 412850 - Need eclipse.inf in osgi.tests to avoid signing inner jars
Add property, as per comment 36.
Diffstat (limited to 'eclipse-platform-parent/pom.xml')
-rw-r--r--eclipse-platform-parent/pom.xml9
1 files changed, 9 insertions, 0 deletions
diff --git a/eclipse-platform-parent/pom.xml b/eclipse-platform-parent/pom.xml
index 514b8e68f..e182ad4e6 100644
--- a/eclipse-platform-parent/pom.xml
+++ b/eclipse-platform-parent/pom.xml
@@ -68,6 +68,12 @@
<!-- 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>
+ <!--
+ If configuration is not specified at all, in signing plugin, the default
+ is 'false' (do not exclude inner jars, that is inner jars are signed).
+ -->
+ <defaultSigning-excludeInnerJars>false</defaultSigning-excludeInnerJars>
+
</properties>
<repositories>
<repository>
@@ -490,6 +496,9 @@
<phase>verify</phase>
</execution>
</executions>
+ <configuration>
+ <excludeInnerJars>${defaultSigning-excludeInnerJars}</excludeInnerJars>
+ </configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho.extras</groupId>

Back to the top