mirror of
https://github.com/PaperMC/Velocity.git
synced 2026-02-17 06:27:42 +01:00
14 lines
215 B
Kotlin
14 lines
215 B
Kotlin
plugins {
|
|
alias(libs.plugins.shadow)
|
|
}
|
|
|
|
dependencies {
|
|
implementation(libs.bundles.configurate3)
|
|
}
|
|
|
|
tasks.shadowJar {
|
|
exclude("com/google/**")
|
|
exclude("com/typesafe/**")
|
|
exclude("org/yaml/**")
|
|
}
|