Add files via upload

This commit is contained in:
Koala 2024-08-18 08:51:46 +08:00 committed by GitHub
parent 0a1f5793ea
commit 0bea4364c5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

54
build.gradle Normal file
View file

@ -0,0 +1,54 @@
plugins {
id'java'
id'application'
id'com.github.johnrengelman.shadow' version '7.0.0'
}
group 'github.io.koala3353'
version '1.0-SNAPSHOT'
shadowJar {
archiveFileName = "bot.jar"
}
compileJava.options.encoding = 'UTF-8'
repositories {
maven {
name 'm2-dv8tion'
url 'https://m2.dv8tion.net/releases'
}
mavenCentral()
maven {
name 'jfrog-duncte123'
url 'https://duncte123.jfrog.io/artifactory/maven'
}
maven {
url 'https://jitpack.io'
}
maven {
url "https://m2.chew.pro/snapshots"
}
}
tasks.build {
dependsOn(tasks.shadowJar)
}
dependencies {
implementation group: 'net.dv8tion', name: 'JDA', version: '5.0.2'
implementation group: 'pw.chew', name: 'jda-chewtils', version: '2.0-SNAPSHOT'
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.3.0-alpha16'
implementation group: 'io.github.cdimascio', name: 'java-dotenv', version: '5.2.2'
implementation group: 'org.xerial', name: 'sqlite-jdbc', version: '3.36.0.3'
implementation group: 'com.zaxxer', name: 'HikariCP', version: '5.0.1'
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.3.0-alpha16'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
implementation group: 'me.xdrop', name: 'fuzzywuzzy', version: '1.4.0'
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
implementation group: 'org.json', name: 'json', version: '20220320'
implementation 'com.googlecode.json-simple:json-simple:1.1.1'
}