BaseBandRewrite/Discord/build.gradle
Jess 97c8035165
All checks were successful
/ Build BaseBand Server (push) Successful in 3m37s
add discord bot + request handler on server side
2024-06-10 04:17:55 +01:00

46 lines
No EOL
914 B
Groovy

plugins {
id 'java'
}
group = 'com.baseband.bot'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
configurations {
jarLibs
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.0'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.10.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.0'
jarLibs("net.dv8tion:JDA:5.0.0-beta.24")
jarLibs(files('libs/TuddyLIB.jar'))
implementation configurations.jarLibs
}
jar {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
from {
configurations.jarLibs.collect {
it.isDirectory() ? it : zipTree(it)
}
} {
exclude "LICENSE.txt", "META-INF/MANIFSET.MF", "META-INF/maven/**", "META-INF/*.RSA", "META-INF/*.SF"
}
manifest.attributes(
'Main-Class': 'com.baseband.bot.Main',
)
}
test {
useJUnitPlatform()
}