diff --git a/README.md b/README.md index 46266f1..90d2395 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,16 @@ JTar is a simple Java Tar library, that provides an easy way to create and read tar files using IO streams. The API is very simple to use and similar to the java.util.zip package. ## Usage -Below are some examples of jtar +JTar is available in maven central and can be added as a dependency in the maven project. +
+ <dependency>
+ <groupId>org.kamranzafar</groupId>
+ <artifactId>jtar</artifactId>
+ <version>2.0.1</version>
+ </dependency>
+
+
+Below are some examples of using jtar in applications
### Tar example - using TarOutputStream