Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Keppler2020-04-13 15:56:35 +0000
committerMatthias Sohn2020-06-07 19:43:28 +0000
commit4c44ce7f18b6b1fa9f68b32ee285b8604c645978 (patch)
treed2b67880843a8833b5fd82cea4e88d616da9d385
parent6cd54a4b63c8ddaf5299004f7139dfa3f9eaff1a (diff)
downloadegit-4c44ce7f18b6b1fa9f68b32ee285b8604c645978.tar.gz
egit-4c44ce7f18b6b1fa9f68b32ee285b8604c645978.tar.xz
egit-4c44ce7f18b6b1fa9f68b32ee285b8604c645978.zip
Remove packed version of egit.doc from update site
egit.doc is the biggest contributor to the update site. The pack200 compressed version is almost as big as the not packed version. Therefore do not even try to create a packed version of that bundle. This removes 5 MB from each update site that we publish. This cannot be tested locally, since the signing profile cannot be executed locally. Running with the default profile works fine locally. Change-Id: I49908c706693d2bd01effb0716f596818effdc37 Signed-off-by: Michael Keppler <Michael.Keppler@gmx.de> Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
-rw-r--r--org.eclipse.egit.doc/pom.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/org.eclipse.egit.doc/pom.xml b/org.eclipse.egit.doc/pom.xml
index ebf025e88c..ae3b5a16fe 100644
--- a/org.eclipse.egit.doc/pom.xml
+++ b/org.eclipse.egit.doc/pom.xml
@@ -61,6 +61,21 @@
</execution>
</executions>
</plugin>
+ <!-- skip pack200 compression, since the normal and the packed egit.doc are both 5 MB -->
+ <plugin>
+ <groupId>org.eclipse.tycho.extras</groupId>
+ <artifactId>tycho-pack200a-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho.extras</groupId>
+ <artifactId>tycho-pack200b-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
</plugins>
</build>
</project>

Back to the top