I want to use commons-compress-1.18.jar in my maven project.
I want want commons-compress-1.18.jar maven dependency to add in pom.xml file. Share me the code to add in maven pom.xml file.
December 31, 2019 at 11:07 PM
HI,
What is maven commons compress?
The what is maven commons compress is Java utility classes from Apache for working with the various archive formats in Java.
This API used for working with ar, cpio, Unix dump, tar, zip, gzip, XZ, Pack200, bzip2, 7z, arj, lzma, snappy, DEFLATE, lz4, Brotli, Zstandard, DEFLATE64 and Z file formats.
If you have requirement to work with such formats you can use Apache commons compress library.
You can add following code to include commons-compress-1.18.jar maven dependency in your project:
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.18</version>
</dependency>
Above code is for commons-compress 1.18.
Following code is for commons-compress 1.19:
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.19</version>
</dependency>
Thanks
Related Tutorials/Questions & Answers:
commons-compress-1.18.jar maven dependency maven dependency code?
I want want
commons-
compress-1.18.
jar maven dependency...
commons-
compress-1.18.
jar maven dependency in your project:
<dependency>...
commons-
compress-1.18.
jar maven dependency Hi,
I want to use
Advertisements
Maven Dependency maven >> 1.0You should include the
dependency code given in this page to add
Maven Dependency of
maven >>
maven version1.0 in your project
Maven Dependency maven >> 1.0.1You should include the
dependency code given in this page to add
Maven Dependency of
maven >>
maven version1.0.1 in your project
Maven Dependency maven >> 1.0.2You should include the
dependency code given in this page to add
Maven Dependency of
maven >>
maven version1.0.2 in your project
Maven Dependency maven >> 1.1You should include the
dependency code given in this page to add
Maven Dependency of
maven >>
maven version1.1 in your project
Maven Dependency maven >> 8.1.0You should include the
dependency code given in this page to add
Maven Dependency of com.cedarsoft >>
maven version8.1.0 in your project
Maven Dependency maven >> 8.1.1You should include the
dependency code given in this page to add
Maven Dependency of com.cedarsoft >>
maven version8.1.1 in your project
Hibernate maven dependency exampleHibernate
maven dependency example Hi,
How to add the
maven dependency in Hibernate based application?
What
dependency should I add in the pom.xml file of the
maven Hibernate project?
Thanks