Skip to content
Open
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
Binary file added .DS_Store
Binary file not shown.
18 changes: 10 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,19 @@ repositories {
}
}

ext {
jupiterVersion = '5.7.0'
}

dependencies {
implementation 'org.javacord:javacord:3.8.0'
implementation 'net.dv8tion:JDA:5.0.0-beta.24'
implementation 'ch.qos.logback:logback-classic:1.5.6'
implementation 'net.aksingh:owm-japis:2.5.3.0'
implementation 'com.googlecode.json-simple:json-simple:1.1.1'
implementation 'javax.json:javax.json-api:1.1'
implementation 'org.mockito:mockito-core:3.4.0'
implementation 'com.google.code.gson:gson:2.8.5'
testImplementation 'org.mockito:mockito-core:3.4.0'
implementation 'org.springframework.boot:spring-boot-starter-webflux:2.4.1'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.11.3'
testImplementation 'org.junit.jupiter:junit-jupiter:5.7.0'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.4.2'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.4.2'
testImplementation "org.junit.jupiter:junit-jupiter:${jupiterVersion}"
testImplementation "org.junit.jupiter:junit-jupiter-migrationsupport:${jupiterVersion}"
}

group = 'org.jointheleague'
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
5 changes: 2 additions & 3 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#Sun Dec 20 18:03:58 PST 2020
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
257 changes: 153 additions & 104 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/main/java/org/jointheleague/Launcher.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import org.jointheleague.discord_bot.DiscordBot;

public class Launcher {
public static void main(String[] args) {
public static void main(String[] args) throws InterruptedException {

//Initialize variables
String channelName = System.getenv("CHANNEL_NAME");
Expand Down
Loading