diff options
author | Jonah Graham | 2020-10-15 13:44:36 +0000 |
---|---|---|
committer | Jonah Graham | 2020-10-15 14:15:58 +0000 |
commit | 5cae91d18a6544dc0dd4f9a87b0f5e44ff55e8cb (patch) | |
tree | ff12af7ec7dbd3e99dccf298c9f6c0b6396a19d3 | |
parent | d38a3ac102271217408fbc816e78f9dd041acefc (diff) | |
download | org.eclipse.epp.packages-5cae91d18a6544dc0dd4f9a87b0f5e44ff55e8cb.tar.gz org.eclipse.epp.packages-5cae91d18a6544dc0dd4f9a87b0f5e44ff55e8cb.tar.xz org.eclipse.epp.packages-5cae91d18a6544dc0dd4f9a87b0f5e44ff55e8cb.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 e8461691..8a6daaef 100644 --- a/releng/org.eclipse.epp.config/parent/pom.xml +++ b/releng/org.eclipse.epp.config/parent/pom.xml @@ -212,7 +212,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 ba3a66e7..a1ba63ff 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> |