From 89bbf84ab1bfbc90f029c6c4c58ada54b70e1d43 Mon Sep 17 00:00:00 2001 From: Ganom Date: Thu, 16 Jan 2020 20:47:55 -0500 Subject: [PATCH] bootstrap: generate pom for runelite-client. --- buildSrc/src/main/kotlin/BootstrapPlugin.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/buildSrc/src/main/kotlin/BootstrapPlugin.kt b/buildSrc/src/main/kotlin/BootstrapPlugin.kt index 9eeb723478..48090e75d9 100644 --- a/buildSrc/src/main/kotlin/BootstrapPlugin.kt +++ b/buildSrc/src/main/kotlin/BootstrapPlugin.kt @@ -34,7 +34,7 @@ class BootstrapPlugin : Plugin { 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(":runelite-client").tasks["publish"]) this.clientJar = clientJar.singleFile @@ -50,9 +50,9 @@ class BootstrapPlugin : Plugin { "${parent?.projectDir}/http-api/build/repo/.", "${parent?.projectDir}/runescape-api/build/repo/." ) - into("${buildDir}/bootstrap/repo/") + into("${buildDir}/bootstrap/repo/${type}") } } } } -} \ No newline at end of file +}