mirror of
https://github.com/funkemunky/AntiVPN.git
synced 2026-05-31 01:21:55 +00:00
31 lines
983 B
Groovy
31 lines
983 B
Groovy
plugins {
|
|
id 'com.gradleup.shadow'
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly 'net.md-5:bungeecord-api:1.21-R0.2'
|
|
testImplementation 'net.md-5:bungeecord-api:1.21-R0.2'
|
|
implementation project(':Common:Source')
|
|
implementation project(':Common:loader-utils')
|
|
implementation 'org.bstats:bstats-bungeecord:2.2.1'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.4'
|
|
testImplementation 'org.mockito:mockito-core:5.11.0'
|
|
testImplementation 'org.mockito:mockito-subclass:5.11.0'
|
|
testImplementation 'org.mockito:mockito-junit-jupiter:5.11.0'
|
|
testImplementation 'com.github.ben-manes.caffeine:caffeine:3.1.8'
|
|
testImplementation testFixtures(project(':Common:Source'))
|
|
}
|
|
tasks.compileJava.dependsOn(':Common:Source:jar')
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
systemProperty 'mockito.mockmaker', 'subclass'
|
|
}
|
|
|
|
shadowJar {
|
|
archiveClassifier.set('')
|
|
relocate 'org.bstats', 'dev.brighten.antivpn.bungee.org.bstats'
|
|
}
|
|
|
|
tasks.build.dependsOn shadowJar
|