Bug 460736 - Fix signing in the presence of packed jars
authorMarc-Andre Laperle <marc-andre.laperle@ericsson.com>
Wed, 25 Feb 2015 22:44:21 +0000 (17:44 -0500)
committerMarc-Andre Laperle <marc-andre.laperle@ericsson.com>
Thu, 26 Feb 2015 06:47:32 +0000 (01:47 -0500)
The pack200b plugin was executing before pack200a when sign-update-site profile
was active. The solution is to explicitly specify the pack200b to be after
pack200a in the profile.

Change-Id: I8e7a0d528e601dc8ca205b3a71d4fdb676081dfe
Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
Reviewed-on: https://git.eclipse.org/r/42709
Reviewed-by: Hudson CI
Reviewed-by: Alexandre Montplaisir <alexmonthy@voxpopuli.im>
Tested-by: Alexandre Montplaisir <alexmonthy@voxpopuli.im>
pom.xml

diff --git a/pom.xml b/pom.xml
index 8b89b79c41d14a5d45a7b4d511447dc8b58777a6..89c1dfd4c65f6949ff920ba8043d1b857ce88ec8 100644 (file)
--- a/pom.xml
+++ b/pom.xml
             </execution>
           </executions>
         </plugin>
+        <plugin>
+          <groupId>org.eclipse.tycho.extras</groupId>
+          <artifactId>tycho-pack200b-plugin</artifactId>
+          <version>${tycho-extras-version}</version>
+          <executions>
+            <execution>
+              <id>pack200-pack</id>
+              <goals>
+                <goal>pack</goal>
+              </goals>
+              <phase>package</phase>
+            </execution>
+          </executions>
+        </plugin>
       </plugins>
     </build>
   </profile>
This page took 0.026112 seconds and 5 git commands to generate.