Skip to main content
summaryrefslogtreecommitdiffstats
path: root/releng
diff options
context:
space:
mode:
authorCamille Letavernier2015-03-31 08:26:03 +0000
committerCamille Letavernier2015-03-31 08:26:03 +0000
commitc9a367b8070409b9a8b8d0dd52197059f5b9b8b7 (patch)
treec737fac9ff767e201df10ef1e9327335a76ef313 /releng
parent8b462ecde3ca1470475d958a2e2d0f0dfb1370a9 (diff)
downloadorg.eclipse.papyrus-c9a367b8070409b9a8b8d0dd52197059f5b9b8b7.tar.gz
org.eclipse.papyrus-c9a367b8070409b9a8b8d0dd52197059f5b9b8b7.tar.xz
org.eclipse.papyrus-c9a367b8070409b9a8b8d0dd52197059f5b9b8b7.zip
463010: Change aggregator build to unpack200 with Java 7, instead of
Java 6 https://bugs.eclipse.org/bugs/show_bug.cgi?id=463010 - Restore Pack200 for Signed Builds
Diffstat (limited to 'releng')
-rw-r--r--releng/top-pom-main.xml54
1 files changed, 27 insertions, 27 deletions
diff --git a/releng/top-pom-main.xml b/releng/top-pom-main.xml
index c2a547a0de4..035310afbc5 100644
--- a/releng/top-pom-main.xml
+++ b/releng/top-pom-main.xml
@@ -740,19 +740,19 @@
<!-- Pack200 -->
<build>
<plugins>
-<!-- <plugin> -->
-<!-- <groupId>org.eclipse.tycho.extras</groupId> -->
-<!-- <artifactId>tycho-pack200a-plugin</artifactId> -->
-<!-- <version>${tychoExtrasVersion}</version> -->
-<!-- <executions> -->
-<!-- <execution> -->
-<!-- <id>pack200-normalize</id> -->
-<!-- <goals> -->
-<!-- <goal>normalize</goal> -->
-<!-- </goals> -->
-<!-- </execution> -->
-<!-- </executions> -->
-<!-- </plugin> -->
+ <plugin>
+ <groupId>org.eclipse.tycho.extras</groupId>
+ <artifactId>tycho-pack200a-plugin</artifactId>
+ <version>${tychoExtrasVersion}</version>
+ <executions>
+ <execution>
+ <id>pack200-normalize</id>
+ <goals>
+ <goal>normalize</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
<plugin>
<groupId>org.eclipse.cbi.maven.plugins</groupId>
<artifactId>eclipse-jarsigner-plugin</artifactId>
@@ -766,19 +766,19 @@
</execution>
</executions>
</plugin>
-<!-- <plugin> -->
-<!-- <groupId>org.eclipse.tycho.extras</groupId> -->
-<!-- <artifactId>tycho-pack200b-plugin</artifactId> -->
-<!-- <version>${tychoExtrasVersion}</version> -->
-<!-- <executions> -->
-<!-- <execution> -->
-<!-- <id>pack200-pack</id> -->
-<!-- <goals> -->
-<!-- <goal>pack</goal> -->
-<!-- </goals> -->
-<!-- </execution> -->
-<!-- </executions> -->
-<!-- </plugin> -->
+ <plugin>
+ <groupId>org.eclipse.tycho.extras</groupId>
+ <artifactId>tycho-pack200b-plugin</artifactId>
+ <version>${tychoExtrasVersion}</version>
+ <executions>
+ <execution>
+ <id>pack200-pack</id>
+ <goals>
+ <goal>pack</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-plugin</artifactId>
@@ -852,7 +852,7 @@
</activation>
</profile>
- <!-- nightly profile is usefull for developers that want to link to nightly build -->
+ <!-- nightly profile is useful for developers that want to link to nightly build -->
<profile>
<id>nightly</id>
<repositories>

Back to the top