"finish" injector module, more robust injected-client loading (#2881)

"finish" injector module, more robust injected-client loading
This commit is contained in:
Tyler Bochard
2020-12-22 22:03:29 -05:00
committed by GitHub
parent f415f3cc6e
commit c36be56e26
65 changed files with 96 additions and 1754 deletions

View File

@@ -14,7 +14,7 @@ class BootstrapPlugin : Plugin<Project> {
bootstrapDependencies(project(":runelite-api"))
bootstrapDependencies(project(":runescape-api"))
bootstrapDependencies(project(":http-api"))
bootstrapDependencies(project(":injected-client"))
bootstrapDependencies(project(":injector"))
bootstrapDependencies(project(":runelite-client"))
}
@@ -31,7 +31,7 @@ class BootstrapPlugin : Plugin<Project> {
dependsOn(project(":runelite-api").tasks["publish"])
dependsOn(project(":runescape-api").tasks["publish"])
dependsOn(project(":http-api").tasks["publish"])
dependsOn(project(":injected-client").tasks["publish"])
dependsOn(project(":injector").tasks["publish"])
doLast {
copy {
@@ -41,7 +41,7 @@ class BootstrapPlugin : Plugin<Project> {
copy {
from(
"${buildDir}/repo/.",
"${parent?.projectDir}/injected-client/build/repo/.",
"${parent?.projectDir}/injector/build/repo/.",
"${parent?.projectDir}/runelite-api/build/repo/.",
"${parent?.projectDir}/http-api/build/repo/.",
"${parent?.projectDir}/runescape-api/build/repo/."