You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This module is available on maven central. The latest version is always shown in the [GitHub Release](https://github.com/discord-jda/JDA/releases/latest).
23
+
24
+
The minimum java version supported by this module is **Java SE 8**.
25
+
26
+
> [!NOTE]
27
+
> The Jitpack artifact must be retrieved using the `io.github.discord-jda.JDA` group ID and `opus-jna` as the artifact ID.
28
+
29
+
### Gradle
30
+
31
+
```gradle
32
+
repositories {
33
+
mavenCentral()
34
+
}
35
+
36
+
dependencies {
37
+
// There is no API to use, it is detected at runtime
38
+
runtimeOnly("net.dv8tion:JDA-opus-jna:$version")
39
+
}
40
+
```
41
+
42
+
### Maven
43
+
44
+
```xml
45
+
<dependency>
46
+
<groupId>net.dv8tion</groupId>
47
+
<artifactId>JDA-opus-jna</artifactId>
48
+
<version>$version</version> <!-- replace $version with the latest version -->
49
+
<!-- There is no API to use, it is detected at runtime -->
0 commit comments