Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Pursehouse2018-01-15 00:45:38 +0000
committerMatthias Sohn2018-01-19 22:43:43 +0000
commit13ba592fff31bd250027e572e9dd9f52190c2187 (patch)
tree5daee9da9509ca23f37f4156c86c7dedc92c5e1a /org.eclipse.jgit.pgm.test
parentbd96feab2488566f2566bf7075f3a46fe2f2f92b (diff)
downloadjgit-13ba592fff31bd250027e572e9dd9f52190c2187.tar.gz
jgit-13ba592fff31bd250027e572e9dd9f52190c2187.tar.xz
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.xml5
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>

Back to the top