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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.gradle/
build/
23 changes: 13 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
group 'org.discordbots'
plugins {
id "java"
}

apply plugin: 'java'
apply plugin: 'maven'
group = 'org.discordbots'

repositories {
mavenCentral()
}

dependencies {

//Logger
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
implementation "org.slf4j:slf4j-api:2.0.17"

compile group: 'org.json', name: 'json', version: '20180130'
compile group: 'com.squareup.okhttp3', name: 'okhttp', version: '3.11.0'
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
compile group: 'com.fatboyindustrial.gson-javatime-serialisers', name: 'gson-javatime-serialisers', version: '1.1.1'
}
implementation "org.json:json:20250517"
implementation "com.squareup.okhttp3:okhttp:5.2.0"
implementation "com.google.code.gson:gson:2.13.2"
implementation "com.fatboyindustrial.gson-javatime-serialisers:gson-javatime-serialisers:1.1.2"
implementation "org.springframework.boot:spring-boot-starter-web:3.5.6"
implementation "jakarta.servlet:jakarta.servlet-api:6.1.0"
implementation "jakarta.ws.rs:jakarta.ws.rs-api:4.0.0"
}
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
5 changes: 3 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#Sat Jul 14 00:30:34 EDT 2018
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.8-all.zip
Loading