# Installation

Whether you want to use Maven or Gradle, you need to add DiVine to your dependencies, as such.

{% tabs %}
{% tab title="Gradle (Kotlin)" %}

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

dependencies {
    implementation("com.github.qibergames:di-vine:VERSION")
}
```

{% endtab %}

{% tab title="Gradle (Groovy)" %}

<pre class="language-gradle"><code class="lang-gradle"><strong>repositories {
</strong>    maven { url 'https://jitpack.io' }
}

dependencies {
    implementation 'com.github.qibergames:di-vine:VERSION'
}
</code></pre>

{% endtab %}

{% tab title="Maven" %}

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

<dependency>
    <groupId>com.github.qibergames</groupId>
    <artifactId>di-vine</artifactId>
    <version>VERSION</version>
</dependency>
```

{% endtab %}
{% endtabs %}

{% hint style="info" %}
You can find the latest version at [DiVine GitHub Packages](https://github.com/qibergames/di-vine/packages/)
{% endhint %}
