> For the complete documentation index, see [llms.txt](https://xyness.gitbook.io/simpleclaimsystem/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://xyness.gitbook.io/simpleclaimsystem/api/dependency.md).

# Dependency

How to add the dependency of SimpleClaimSystem

## Gradle

```gradle
repositories {
    maven { url = "https://jitpack.io" }
}
```

## Maven

```xml
<repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
</repository>

<dependency>
    <groupId>com.github.Xyness</groupId>
    <artifactId>SimpleClaimSystem</artifactId>
    <version>1.11</version>
</dependency>
```

## plugin.yml

If SimpleClaimSystem is a dependance to your plugin, add it as depend :

```yaml
depend: [SimpleClaimSystem]
```

If SimpleClaimSystem is a soft dependance (optional) to your plugin, add it as soft-depend:

```yaml
soft-depend: [SimpleClaimSystem]
```
