BaseBandRewrite/Discord/build.gradle
TudbuT 7be8cabc2d
All checks were successful
/ Build BaseBand DSM & Broadway (push) Successful in 2m58s
remove the consumers of disk space
2024-06-25 04:27:30 +02:00

51 lines
No EOL
1.1 KiB
Groovy

plugins {
id 'java'
}
group = 'de.com.baseband.bot'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven { url = 'https://git.tudbut.de/api/packages/TudbuT/maven' }
maven { url = 'https://git.tudbut.de/api/packages/BaseBand/maven' }
}
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'
implementation('de.tudbut:tuddylib:+')
jarLibs("net.dv8tion:JDA:5.0.0-beta.24")
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': 'de.com.baseband.bot.Main',
)
archiveFileName = "BaseBand-Discord.jar"
}
test {
useJUnitPlatform()
}