Fix pluginmanagertest for async subbing (and some enhancements which don't really belong in this pr but shhh about that)

This commit is contained in:
Lucwousin
2019-12-15 21:25:25 +01:00
parent 8724311d20
commit 0c1c461139
3 changed files with 24 additions and 2 deletions

View File

@@ -59,7 +59,7 @@ tasks {
"rs.client" to deobjars.find { it.name.startsWith("runescape-client") }.toString().replace("\\", "/")
)
processResources {
processResources {
finalizedBy("filterResources")
}
@@ -112,3 +112,14 @@ tasks {
main = "net.runelite.deob.updater.UpdateMappings"
}
}
publishing {
repositories {
mavenLocal()
}
publications {
register("asd", MavenPublication::class) {
from(components["java"])
}
}
}