Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThanh Ha2012-12-14 15:41:54 +0000
committerThanh Ha2012-12-14 15:52:22 +0000
commit589f75a5e1124a7f7f2c408da7575b6ca8946a11 (patch)
treeda8ed7beeba1510c8a576655f6cd22d51bfe918a /eclipse-parent/pom.xml
parentf3597a2cd94e210833fa0ebe007ca51b3ba4d123 (diff)
downloadeclipse.platform.releng.aggregator-589f75a5e1124a7f7f2c408da7575b6ca8946a11.tar.gz
eclipse.platform.releng.aggregator-589f75a5e1124a7f7f2c408da7575b6ca8946a11.tar.xz
eclipse.platform.releng.aggregator-589f75a5e1124a7f7f2c408da7575b6ca8946a11.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.
Diffstat (limited to 'eclipse-parent/pom.xml')
-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 248f42786..e0802835d 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