diff options
author | David Pursehouse <david.pursehouse@gmail.com> | 2018-01-15 09:45:38 +0900 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2018-01-19 23:43:43 +0100 |
commit | 13ba592fff31bd250027e572e9dd9f52190c2187 (patch) | |
tree | 5daee9da9509ca23f37f4156c86c7dedc92c5e1a /org.eclipse.jgit.pgm.test | |
parent | bd96feab2488566f2566bf7075f3a46fe2f2f92b (diff) | |
download | jgit-13ba592fff31bd250027e572e9dd9f52190c2187.tar.gz jgit-13ba592fff31bd250027e572e9dd9f52190c2187.zip |
Upgrade commons-compress to 1.15
Also update xz to 1.6 as this is the version commons-compress 1.15
wants. Since xz 1.6 is an optional dependency for commons-compress we
need to add a non-optional dependency to xz for
org.eclipse.jgit.pgm.test since one of the tests explicitly requires xz.
Related change adding commons-compress to Orbit:
https://git.eclipse.org/r/#/c/115366/
CQ: 15356
CQ: 15360
Change-Id: I0d61c71bc541cc30464a0fff93775b079dd3ba88
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit.pgm.test')
-rw-r--r-- | org.eclipse.jgit.pgm.test/pom.xml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/org.eclipse.jgit.pgm.test/pom.xml b/org.eclipse.jgit.pgm.test/pom.xml index 3a6dad4ae5..dada5670c1 100644 --- a/org.eclipse.jgit.pgm.test/pom.xml +++ b/org.eclipse.jgit.pgm.test/pom.xml @@ -84,6 +84,11 @@ <version>${project.version}</version> </dependency> + <dependency> + <groupId>org.tukaani</groupId> + <artifactId>xz</artifactId> + <optional>true</optional> + </dependency> </dependencies> <build> |