Skip to content

Commit 02b2acd

Browse files
committed
v6.7.0: Switch to new JDA dependency
1 parent b2dc081 commit 02b2acd

File tree

3 files changed

+3
-33
lines changed

3 files changed

+3
-33
lines changed

build.gradle

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins{
77
id 'com.github.johnrengelman.shadow' version '5.2.0'
88
}
99

10-
def ver = new Version(major: 6, minor: 6, patch: 6)
10+
def ver = new Version(major: 6, minor: 7, patch: 0)
1111

1212
allprojects {
1313
apply plugin: 'maven-publish'
@@ -87,6 +87,7 @@ allprojects {
8787
repositories {
8888
mavenCentral()
8989
jcenter()
90+
maven { url = 'https://m2.dv8tion.net/releases' }
9091
}
9192

9293
build {

core/src/main/java/org/botblock/javabotblockapi/core/Site.java

-31
Original file line numberDiff line numberDiff line change
@@ -48,21 +48,6 @@
4848
*/
4949
public class Site{
5050

51-
/**
52-
* <a href="https://arcane-center.xyz" target="_blank">arcane-center.xyz</a>
53-
*
54-
* <p>Supported methods:
55-
* <ul>
56-
* <li>POST</li>
57-
* </ul>
58-
*
59-
* @deprecated Website not responding.
60-
*/
61-
@Deprecated
62-
@DeprecatedSince(major = 6, minor = 6, patch = 6)
63-
@PlannedRemoval(major = 6, minor = 6, patch = 8)
64-
public static final Site ARCANE_CENTER_XYZ = new Site("arcane-center.xyz");
65-
6651
/**
6752
* <a href="https://bladebotlist.xyz" target="_blank">bladebotlist.xyz</a>
6853
*
@@ -98,22 +83,6 @@ public class Site{
9883
*/
9984
public static final Site BOATSPACE_XYZ = new Site("boatspace.xyz", HttpMethod.GET, HttpMethod.POST);
10085

101-
/**
102-
* <a href="https://botsdatabase.com" target="_blank">botsdatabase.com</a>
103-
*
104-
* <p>Supported methods:
105-
* <ul>
106-
* <li>GET</li>
107-
* <li>POST</li>
108-
* </ul>
109-
*
110-
* @deprecated Website not responding.
111-
*/
112-
@Deprecated
113-
@DeprecatedSince(major = 6, minor = 6, patch = 6)
114-
@PlannedRemoval(major = 6, minor = 6, patch = 8)
115-
public static final Site BOTSDATABASE_COM = new Site("botsdatabase.com");
116-
11786
/**
11887
* <a href="https://bots.discordlabs.org" target="_blank">bots.discordlabs.org</a>
11988
*

jda/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dependencies {
2-
api(group: 'net.dv8tion', name: 'JDA', version: '4.2.0_247'){
2+
api(group: 'net.dv8tion', name: 'JDA', version: '4.3.0_280'){
33
exclude(module: 'opus-java')
44
}
55
implementation project(":core")

0 commit comments

Comments
 (0)