Skip to content

Commit

Permalink
Merge pull request #242 from botblock/feature/update-jda
Browse files Browse the repository at this point in the history
Update to new JDA Repository
  • Loading branch information
Andre601 authored Jun 18, 2021
2 parents 3f59bc5 + 02b2acd commit 87bf0c0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 33 deletions.
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

0 comments on commit 87bf0c0

Please sign in to comment.