aboutsummaryrefslogtreecommitdiffstats
path: root/ms/blueprintsprocessor/parent/pom.xml
diff options
context:
space:
mode:
authorLukasz Rajewski <lukasz.rajewski@orange.com>2020-02-23 19:36:38 +0100
committerLukasz Rajewski <lukasz.rajewski@orange.com>2020-02-24 09:16:04 +0100
commitcc9f145afbc2f087c4aeb2afb75effcff30099cd (patch)
tree7dbeac6e9cd53cd01254cb7c00d933ded4f3ad70 /ms/blueprintsprocessor/parent/pom.xml
parent488047494da258c07c723fdd378c5092005613c6 (diff)
Add tar.gz compression capability
The change modifies ArchiveUtils by change of the library responsible for compression and decompression of zip files. After change of library for appache compression tar.gz was added as another format which archive utils can support. For ZIP files there is kept backward compatibility because new lib keeps implementation of ZipFile similar to the one used before in the utils. Issue-ID: INT-1458 Signed-off-by: Lukasz Rajewski <lukasz.rajewski@orange.com> Change-Id: I78388ef8c5e7a23ac6664ae49c00638af38d8c8a
Diffstat (limited to 'ms/blueprintsprocessor/parent/pom.xml')
-rwxr-xr-xms/blueprintsprocessor/parent/pom.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/ms/blueprintsprocessor/parent/pom.xml b/ms/blueprintsprocessor/parent/pom.xml
index 8301fbccf..d47889a48 100755
--- a/ms/blueprintsprocessor/parent/pom.xml
+++ b/ms/blueprintsprocessor/parent/pom.xml
@@ -60,6 +60,7 @@
<json-smart.version>2.3</json-smart.version>
<commons-io-version>2.6</commons-io-version>
+ <commons-compress-version>1.20</commons-compress-version>
<commons-collections-version>3.2.2</commons-collections-version>
</properties>
@@ -130,6 +131,11 @@
<version>${commons-io-version}</version>
</dependency>
<dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-compress</artifactId>
+ <version>${commons-compress-version}</version>
+ </dependency>
+ <dependency>
<groupId>com.hubspot.jinjava</groupId>
<artifactId>jinjava</artifactId>
<version>${jinja.version}</version>