Compare commits

...

12 commits

Author SHA1 Message Date
Telesphoreo 2acb45e4e4 Update dependencies 2022-03-25 16:00:41 -05:00
Telesphoreo 58403d86c3 Update dependencies 2021-12-07 19:37:47 -06:00
Telesphoreo 240448275c Update for 1.17.1 2021-09-29 16:53:21 -05:00
Ryan 54194a7f7e
Merge pull request #3 from AtlasMediaGroup/JDA-Update
JDA Update
2021-04-10 12:41:09 +01:00
Nathan Curran 6ba5165697
Update JDA version and location 2021-04-09 20:54:03 +10:00
Nathan Curran def3534d0d
Another JDA update 2021-03-08 19:18:48 +11:00
Nathan Curran b2805f1df9
Bumped JDA to latest version 2021-03-07 12:00:01 +11:00
Paldiu b59ce8d5c1
Merge pull request #2 from AtlasMediaGroup/1.16.5-updates
Updates for 1.16.5
2021-03-03 11:44:09 -06:00
Ryan c8ffe69a2c
Update pom.xml 2021-02-23 22:27:31 +00:00
Ryan Wild fad57f3857
Updates for 1.16.5 2021-02-12 23:25:01 +00:00
Paldiu fd5166cc22
Merge pull request #1 from courteousIy/master
Update pom.xml & readme
2020-12-28 07:26:20 -05:00
courteously 4486befb1d Update pom.xml & readme
- Updated JDA to version 4.2.0_222.

- Bumped dependencies.

- Removed an extra section where one dependency was added twice.

- Rewrote the readme file to be more informative.
2020-12-27 18:33:50 -08:00
4 changed files with 21 additions and 34 deletions

1
.gitignore vendored
View file

@ -2,3 +2,4 @@ target/
.idea
*.iml
dependency-reduced-pom.xml
.DS_Store

View file

@ -1,2 +1,2 @@
# Minecraft-JDA
Minecraft plugin version of JDA (It's just a dependency plugin)
This is a Minecraft plugin version of JDA. On the TotalFreedom Minecraft server, it serves as a dependency for the Discord bot.

47
pom.xml
View file

@ -7,7 +7,6 @@
<groupId>me.totalfreedom</groupId>
<artifactId>Minecraft-JDA</artifactId>
<version>1.0</version>
<name>Minecraft-JDA</name>
<properties>
@ -21,9 +20,9 @@
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
<repository>
<id>jcenter</id>
<name>jcenter-bintray</name>
<url>https://jcenter.bintray.com</url>
<id>dv8tion</id>
<name>m2-dv8tion</name>
<url>https://m2.dv8tion.net/releases/</url>
</repository>
</repositories>
@ -31,43 +30,29 @@
<dependency>
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
<version>4.2.0_168</version>
<version>4.4.0_351</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
<version>1.16.1-R0.1-SNAPSHOT</version>
<scope>provided</scope>
<artifactId>spigot-api</artifactId>
<version>1.17.1-R0.1-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<!-- Required for both JDA and Pterodactyl integration -->
<dependency>
<groupId>com.neovisionaries</groupId>
<artifactId>nv-websocket-client</artifactId>
<version>2.9</version>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20211205</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>3.10.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>3.10.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.25</version>
<scope>provided</scope>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
<version>4.4</version>
</dependency>
</dependencies>
@ -81,7 +66,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<version>3.10.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
@ -105,4 +90,4 @@
</plugin>
</plugins>
</build>
</project>
</project>

View file

@ -1,4 +1,5 @@
name: JDA
version: 4.2.0_168
version: 4.4.0_351
author: scripthead
main: me.totalfreedom.jda.JDA
main: me.totalfreedom.jda.JDA
api-version: "1.17"