diff options
author | Jonah Graham | 2020-10-15 13:44:36 +0000 |
---|---|---|
committer | Jonah Graham | 2020-10-15 18:11:25 +0000 |
commit | c748afb567832c34105a51d3ead3384092cf1c5b (patch) | |
tree | e07acd8be90061b059e380855fc3314e6d537664 | |
parent | 9f7451688a760cd103adb7afd9574b25777d4404 (diff) | |
download | org.eclipse.epp.packages-c748afb567832c34105a51d3ead3384092cf1c5b.tar.gz org.eclipse.epp.packages-c748afb567832c34105a51d3ead3384092cf1c5b.tar.xz org.eclipse.epp.packages-c748afb567832c34105a51d3ead3384092cf1c5b.zip |
Revert "Bug 567037: Add .xml.xz and p2.index to EPP build output"
This reverts commit 95d888ba44b899aef7c1030eeaea659f7d2639c7.
Reason for revert: The comment in the code was correct - the xz file contents is incorrect.
Change-Id: Ie5a6772566a214211ce4412009aba805949fd4e7
-rw-r--r-- | releng/org.eclipse.epp.config/parent/pom.xml | 3 | ||||
-rw-r--r-- | releng/org.eclipse.epp.config/parent/product/pom.xml | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/releng/org.eclipse.epp.config/parent/pom.xml b/releng/org.eclipse.epp.config/parent/pom.xml index 9cdfc057..a9de51f1 100644 --- a/releng/org.eclipse.epp.config/parent/pom.xml +++ b/releng/org.eclipse.epp.config/parent/pom.xml @@ -213,7 +213,8 @@ <p2.statsURI>https://download.eclipse.org/stats/technology/epp/packages/${eclipse.simultaneous.release.id}/</p2.statsURI> </extraArtifactRepositoryProperties> <compress>true</compress> - <xzCompress>true</xzCompress> + <!-- Mirror goal used to aggregate unit seem to ignore the .xz files so let's not generate them to avoid inconsistency between *.jar and *.xz --> + <xzCompress>false</xzCompress> </configuration> </plugin> <plugin> diff --git a/releng/org.eclipse.epp.config/parent/product/pom.xml b/releng/org.eclipse.epp.config/parent/product/pom.xml index 83e48e17..3441c524 100644 --- a/releng/org.eclipse.epp.config/parent/product/pom.xml +++ b/releng/org.eclipse.epp.config/parent/product/pom.xml @@ -84,7 +84,8 @@ <includePacked>true</includePacked> <mirrorMetadataOnly>false</mirrorMetadataOnly> <append>true</append> - <xzCompress>true</xzCompress> + <!-- Mirror goal used to aggregate unit seem to ignore the .xz files so let's not generate them to avoid inconsistency between *.jar and *.xz --> + <xzCompress>false</xzCompress> </configuration> </execution> </executions> |