Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThanh Ha2012-12-14 15:41:54 +0000
committerThanh Ha2012-12-14 15:41:54 +0000
commitd4f7bd34766b30cf63453f568d1ebc6dbd0f8dd3 (patch)
treeb3a967715849748d2089c7bec8ed3258ca73a70f
parentda4aecee9f9691c6645c95ef85678f10a53ecf80 (diff)
downloadeclipse.platform.releng.aggregator-d4f7bd34766b30cf63453f568d1ebc6dbd0f8dd3.tar.gz
eclipse.platform.releng.aggregator-d4f7bd34766b30cf63453f568d1ebc6dbd0f8dd3.tar.xz
eclipse.platform.releng.aggregator-d4f7bd34766b30cf63453f568d1ebc6dbd0f8dd3.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 e0e7990c5..11406f569 100644
--- a/eclipse-parent/pom.xml
+++ b/eclipse-parent/pom.xml
@@ -313,6 +313,7 @@
<goals>
<goal>normalize</goal>
</goals>
+ <phase>verify</phase>
</execution>
</executions>
</plugin>
@@ -327,6 +328,7 @@
<goals>
<goal>sign</goal>
</goals>
+ <phase>verify</phase>
</execution>
</executions>
</plugin>
@@ -341,6 +343,7 @@
<goals>
<goal>pack</goal>
</goals>
+ <phase>verify</phase>
</execution>
</executions>
</plugin>
@@ -355,7 +358,7 @@
<goals>
<goal>p2-metadata</goal>
</goals>
- <phase>package</phase>
+ <phase>verify</phase>
</execution>
</executions>
<configuration>

Back to the top