45 lines
No EOL
1.2 KiB
Groovy
45 lines
No EOL
1.2 KiB
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'dev.baseband'
|
|
version = '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
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.13")
|
|
embed("net.dv8tion:JDA:5.0.0-beta.13")
|
|
implementation 'org.json:json:20211205'
|
|
implementation group: 'org.mindrot', name: 'jbcrypt', version: '0.4'
|
|
embed group: 'org.mindrot', name: 'jbcrypt', version: '0.4'
|
|
|
|
|
|
embed group: 'org.mariadb.jdbc', name: 'mariadb-java-client', version: '2.7.3'
|
|
implementation group: 'org.mariadb.jdbc', name: 'mariadb-java-client', version: '2.7.3'
|
|
|
|
embed 'org.json:json:20211205'
|
|
}
|
|
|
|
jar {
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
|
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"
|
|
}
|
|
manifest {
|
|
attributes(
|
|
'Main-Class': 'dev.baseband.server.Main'
|
|
)
|
|
}
|
|
} |