mirror of
https://github.com/funkemunky/AntiVPN.git
synced 2026-05-31 09:31:54 +00:00
57109e4c97
* Gradle project refactor
* Updating workflows for github
* Attempting to fix workflows
* Fixing maven central proxy
* Fixing missing dependency in velocity
* Fixing build
* Getting rid of universal submodule
* Updating workflows to handle new build structure, removing maven workflows
* Fixing permissions issues caused by gradle files being handled on Windows
* Revert "Fixing permissions issues caused by gradle files being handled on Windows"
This reverts commit 3e4d8be955.
* replacing instances of gradlew
* Adding gradlew wrapper
* Attempting to fix gradle issues
* Attempting to fix gradle issues
* Adding back ssl args
* Using built in pipeline
27 lines
586 B
Groovy
27 lines
586 B
Groovy
plugins {
|
|
id 'com.gradleup.shadow'
|
|
}
|
|
|
|
evaluationDependsOn(':Bungee:BungeePlugin')
|
|
|
|
dependencies {
|
|
compileOnly 'net.md-5:bungeecord-api:1.21-R0.2'
|
|
compileOnly project(':Bungee:BungeePlugin')
|
|
implementation project(':Common:loader-utils')
|
|
}
|
|
|
|
shadowJar {
|
|
archiveClassifier.set('')
|
|
|
|
// Include the shaded plugin jar as a single resource file
|
|
from(project(':Bungee:BungeePlugin').tasks.shadowJar) {
|
|
rename { 'antivpn-bungee.jarinjar' }
|
|
}
|
|
}
|
|
|
|
tasks.named('shadowJar') {
|
|
dependsOn(':Bungee:BungeePlugin:shadowJar')
|
|
}
|
|
|
|
tasks.build.dependsOn shadowJar
|