bootstrap: use jshell

This commit is contained in:
ThatGamerBlue
2021-03-04 18:08:23 +00:00
parent 259d80201a
commit dc6b1cba08
3 changed files with 7 additions and 2 deletions

View File

@@ -15,6 +15,7 @@ class BootstrapPlugin : Plugin<Project> {
bootstrapDependencies(project(":runescape-api"))
bootstrapDependencies(project(":http-api"))
bootstrapDependencies(project(":runelite-client"))
bootstrapDependencies(project(":runelite-jshell"))
}
tasks.register<BootstrapTask>("bootstrapStaging", "staging")
@@ -30,6 +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(":runelite-jshell").tasks["publish"])
doLast {
copy {
@@ -41,7 +43,8 @@ class BootstrapPlugin : Plugin<Project> {
"${buildDir}/repo/.",
"${parent?.projectDir}/runelite-api/build/repo/.",
"${parent?.projectDir}/http-api/build/repo/.",
"${parent?.projectDir}/runescape-api/build/repo/."
"${parent?.projectDir}/runescape-api/build/repo/.",
"${parent?.projectDir}/runelite-jshell/build/repo/."
)
into("${buildDir}/bootstrap/repo/${type}")
}