From 2e4dc55f9b9a455bd7d1211b28eea3d2406d2733 Mon Sep 17 00:00:00 2001 From: ThatGamerBlue Date: Fri, 2 Apr 2021 21:42:33 +0100 Subject: [PATCH] bootstrap: fix classifiers --- buildSrc/src/main/kotlin/BootstrapTask.kt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/buildSrc/src/main/kotlin/BootstrapTask.kt b/buildSrc/src/main/kotlin/BootstrapTask.kt index 98d511464c..d2b8ccd0d1 100644 --- a/buildSrc/src/main/kotlin/BootstrapTask.kt +++ b/buildSrc/src/main/kotlin/BootstrapTask.kt @@ -67,7 +67,11 @@ open class BootstrapTask @Inject constructor(@Input val type: String) : DefaultT it.file.name.contains("jocl") ) { path = "https://repo.runelite.net/" - path += "${group.replace(".", "/")}/${name}/$version/${name}-$version.jar" + path += "${group.replace(".", "/")}/${name}/$version/${name}-$version" + if (it.classifier != null && it.classifier != "no_aop") { + path += "-${it.classifier}" + } + path += ".jar" } else {