Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThanh Ha2012-12-14 15:41:54 +0000
committerThanh Ha2012-12-14 15:44:44 +0000
commitaea2265b51ff8229861b461058c9e8212d0a92ec (patch)
tree1806245da75e5b2516b9f0dc5b2da1e1081c9369
parent0e8970640253e000ac25923c1281d1a004de8d19 (diff)
downloadeclipse.platform.releng.aggregator-aea2265b51ff8229861b461058c9e8212d0a92ec.tar.gz
eclipse.platform.releng.aggregator-aea2265b51ff8229861b461058c9e8212d0a92ec.tar.xz
eclipse.platform.releng.aggregator-aea2265b51ff8229861b461058c9e8212d0a92ec.zip
Bug 396445 - None of the generated source features are signed
- This patch moves the normalize, sign, pack, and p2-metadata goals to the "verify" phase ensuring that signing happens after the source features are generated in the "package" phase.
-rw-r--r--eclipse-parent/pom.xml5
1 files changed, 4 insertions, 1 deletions
diff --git a/eclipse-parent/pom.xml b/eclipse-parent/pom.xml
index 97ef3bbdb..b5dc94da9 100644
--- a/eclipse-parent/pom.xml
+++ b/eclipse-parent/pom.xml
@@ -303,6 +303,7 @@
<goals>
<goal>normalize</goal>
</goals>
+ <phase>verify</phase>
</execution>
</executions>
</plugin>
@@ -316,6 +317,7 @@
<goals>
<goal>sign</goal>
</goals>
+ <phase>verify</phase>
</execution>
</executions>
</plugin>
@@ -329,6 +331,7 @@
<goals>
<goal>pack</goal>
</goals>
+ <phase>verify</phase>
</execution>
</executions>
</plugin>
@@ -342,7 +345,7 @@
<goals>
<goal>p2-metadata</goal>
</goals>
- <phase>package</phase>
+ <phase>verify</phase>
</execution>
</executions>
<configuration>

Back to the top