> For the complete documentation index, see [llms.txt](https://docs.gravemc.net/moderndisguise/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.gravemc.net/moderndisguise/adding/gradle.md).

# Gradle 💻

## Adding to the build file

Add this repository to your repositories block:

```gradle
repositories {
    maven {
        name = "gravemc-repo"
        url = "https://repo.gravemc.net/releases/"
    }
}
```

and then add dependency:

```gradle
dependencies {
    implementation 'dev.iiahmed:ModernDisguise:3.0'
}
```

## Shadowing & Relocating

You can relocate the package as well, here's an example shadowJar plugin block:

```gradle
shadowJar {
    relocate("dev.iiahmed.disguise", "example.package.shade")
}
```

make sure you use the shadowJar plugin in order to include the library in your jar.
