From d9059388d1a3d60c26da1f56a89d36078c670a68 Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Wed, 9 Apr 2025 22:38:43 -0700 Subject: [PATCH] Fix sources not being uploaded to repo --- build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle.kts b/build.gradle.kts index 72e70eb..420a577 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -92,6 +92,7 @@ publishing { artifactId = rootProject.name.lowercase() version = rootProject.version as String? artifact(tasks.shadowJar) + artifact(sourcesJar.get()) } } }