Minor upstream file changes

This commit is contained in:
MattBDev
2020-01-29 16:13:28 -05:00
parent bef69b5be3
commit 2cc66b0d98
6 changed files with 15 additions and 10 deletions

View File

@ -25,7 +25,6 @@ repositories {
configurations.all {
resolutionStrategy {
force()
force("com.google.guava:guava:21.0")
}
}
@ -69,6 +68,10 @@ tasks.named<Copy>("processResources") {
filesMatching("plugin.yml") {
expand("internalVersion" to project.ext["internalVersion"])
}
from(zipTree("src/main/resources/worldedit-adapters.jar").matching {
exclude("META-INF/")
})
exclude("**/worldedit-adapters.jar")
}
tasks.named<Jar>("jar") {