Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins{
id 'com.github.johnrengelman.shadow' version '5.2.0'
}

def ver = new Version(major: 6, minor: 6, patch: 6)
def ver = new Version(major: 6, minor: 7, patch: 0)

allprojects {
apply plugin: 'maven-publish'
Expand Down Expand Up @@ -87,6 +87,7 @@ allprojects {
repositories {
mavenCentral()
jcenter()
maven { url = 'https://m2.dv8tion.net/releases' }
}

build {
Expand Down
31 changes: 0 additions & 31 deletions core/src/main/java/org/botblock/javabotblockapi/core/Site.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,21 +48,6 @@
*/
public class Site{

/**
* <a href="https://arcane-center.xyz" target="_blank">arcane-center.xyz</a>
*
* <p>Supported methods:
* <ul>
* <li>POST</li>
* </ul>
*
* @deprecated Website not responding.
*/
@Deprecated
@DeprecatedSince(major = 6, minor = 6, patch = 6)
@PlannedRemoval(major = 6, minor = 6, patch = 8)
public static final Site ARCANE_CENTER_XYZ = new Site("arcane-center.xyz");

/**
* <a href="https://bladebotlist.xyz" target="_blank">bladebotlist.xyz</a>
*
Expand Down Expand Up @@ -98,22 +83,6 @@ public class Site{
*/
public static final Site BOATSPACE_XYZ = new Site("boatspace.xyz", HttpMethod.GET, HttpMethod.POST);

/**
* <a href="https://botsdatabase.com" target="_blank">botsdatabase.com</a>
*
* <p>Supported methods:
* <ul>
* <li>GET</li>
* <li>POST</li>
* </ul>
*
* @deprecated Website not responding.
*/
@Deprecated
@DeprecatedSince(major = 6, minor = 6, patch = 6)
@PlannedRemoval(major = 6, minor = 6, patch = 8)
public static final Site BOTSDATABASE_COM = new Site("botsdatabase.com");

/**
* <a href="https://bots.discordlabs.org" target="_blank">bots.discordlabs.org</a>
*
Expand Down
2 changes: 1 addition & 1 deletion jda/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dependencies {
api(group: 'net.dv8tion', name: 'JDA', version: '4.2.0_247'){
api(group: 'net.dv8tion', name: 'JDA', version: '4.3.0_280'){
exclude(module: 'opus-java')
}
implementation project(":core")
Expand Down