client: fix bootstrapping

This commit is contained in:
TheRealNull
2021-01-10 13:20:04 -05:00
parent 5830575dcc
commit 20eb55c8ac
2 changed files with 17 additions and 5 deletions

View File

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