diff --git a/README.md b/README.md
index b72516c..8d9149d 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,39 @@
# NBT Manipulator
This is a Kotlin/Java library that allows you to read and write NBT files and data in a clean and simple way.
+## Adding to your project
+
+The library is shared in the maven center, so you don't need to declare any custom repository.
+
+### Gradle
+```groovy
+repositories {
+ mavenCentral() // or jcenter()
+}
+
+dependencies {
+ compile 'br.com.gamemods:nbt-manipulator:0.0.1'
+}
+```
+
+### Maven
+```xml
+
+
+ br.com.gamemods
+ nbt-manipulator
+ 0.0.1
+
+
+```
+
+### Ivy
+```xml
+
+
+
+```
+
## Examples
```kotlin
val compound = NbtCompound()