Discord bot fully compiled to Jar

might be recompiled as things need fixing
This commit is contained in:
nzBryce101
2024-04-12 18:33:26 +12:00
parent 0d8bea51e4
commit 56665b0f76
5 changed files with 28 additions and 15 deletions

38
pom.xml
View File

@@ -23,7 +23,7 @@
<scope>provided</scope>
</dependency>
<!-- Google dependencies -->
<!-- Google / YouTube dependencies -->
<dependency>
<groupId>com.google.api-client</groupId>
<artifactId>google-api-client</artifactId>
@@ -39,25 +39,35 @@
<artifactId>google-http-client-jackson2</artifactId>
<version>1.44.1</version>
</dependency>
<dependency>
<groupId>com.google.oauth-client</groupId>
<artifactId>google-oauth-client</artifactId>
<version>1.35.0</version>
</dependency>
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-youtube</artifactId>
<version>v3-rev222-1.25.0</version>
</dependency>
<!-- JDA (Java Discord API) -->
<!--(Java Discord API) with JFlac and Tritonus-dsp -->
<dependency>
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
<version>1.2.2_139</version> <!-- Update version to the latest stable version -->
</dependency>
<exclusions>
<exclusion>
<groupId>jflac</groupId>
<artifactId>jflac</artifactId>
</exclusion>
<exclusion>
<groupId>tritonus</groupId>
<artifactId>tritonus-dsp</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- JFLAC / Sound Codec-->
<dependency>
<groupId>org.jflac</groupId>
<artifactId>jflac-codec</artifactId>
<version>1.5.2</version>
</dependency>
<dependency>
<groupId>com.googlecode.soundlibs</groupId>
<artifactId>tritonus-all</artifactId>
<version>0.3.7.2</version>
</dependency>
<!-- Add other dependencies as needed -->
</dependencies>