BaseBandRewrite/Server/build.gradle

37 lines
825 B
Groovy
Raw Normal View History

2023-08-26 16:19:12 +02:00
plugins {
id 'java'
}
group = 'dev.baseband'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
2023-08-27 21:21:06 +02:00
configurations {
embed
compile.extendsFrom(embed)
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
implementation("net.dv8tion:JDA:5.0.0-beta.4")
embed("net.dv8tion:JDA:5.0.0-beta.4")
implementation 'org.json:json:20211205'
embed 'org.json:json:20211205'
}
2023-08-26 16:19:12 +02:00
jar {
2023-08-27 21:21:06 +02:00
from {
configurations.embed.collect { it.isDirectory() ? it : zipTree(it) }
} {
exclude "LICENSE.txt", "META-INF/MANIFSET.MF", "META-INF/maven/**", "META-INF/*.RSA", "META-INF/*.SF"
}
2023-08-26 16:19:12 +02:00
manifest {
attributes(
'Main-Class': 'dev.baseband.server.Main'
)
}
}