Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
WholesomeGodList committed Jan 1, 2020
1 parent bf15e82 commit 9c3e7d8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id'com.github.johnrengelman.shadow' version '5.1.0'
}

def jdaVersion = '4.0.0_59'
def jdaVersion = '4.1.0_90'

group 'stinggy.hbot'
version '1.0-SNAPSHOT'
Expand All @@ -17,11 +17,11 @@ repositories {

dependencies {
implementation "net.dv8tion:JDA:$jdaVersion"
implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.12.0'
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.12.0'
implementation group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.12.0'
implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.13.0'
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.13.0'
implementation group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.13.0'
implementation 'org.jsoup:jsoup:1.12.1'
implementation 'org.apache.commons:commons-text:1.7'
implementation 'org.apache.commons:commons-text:1.8'
implementation 'org.json:json:20190722'
}

Expand Down
3 changes: 2 additions & 1 deletion src/main/java/bot/commands/IsCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
public class IsCommand {
private static final ArrayList<String> allCommands = new ArrayList<>(
Arrays.asList(
"help", "tags", "getpage", "info", "read", "badtags", "warningtags", "supportedsites", "sites", "random", "search", "deepsearch", "addhook", "removehook"
"help", "tags", "getpage", "info", "read", "badtags", "warningtags",
"supportedsites", "sites", "random", "search", "deepsearch", "addhook", "removehook"
)
);
public static boolean isCommand(String query){
Expand Down

0 comments on commit 9c3e7d8

Please sign in to comment.