9
0
mirror of https://github.com/BX-Team/DivineMC.git synced 2025-12-21 15:59:23 +00:00
Files
DivineMC/patches/api/0006-DivineMC-API-Publish.patch
2024-10-11 19:12:21 +03:00

26 lines
775 B
Diff

From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: NONPLAYT <76615486+NONPLAYT@users.noreply.github.com>
Date: Tue, 14 May 2024 17:22:39 +0300
Subject: [PATCH] DivineMC API Publish
diff --git a/build.gradle.kts b/build.gradle.kts
index 5c0bf1662176a1293444dcaa0b8c7ad274a65a66..b72c89b3fea64d229a072f1fddffc7a71800d228 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -242,3 +242,14 @@ tasks.withType<JavaCompile> {
compilerArgs.add("-Xlint:-dep-ann")
}
// DivineMC end
+
+// DivineMC start - publish to GitHub Packages
+publishing {
+ repositories {
+ maven("https://repo.bx-team.space/snapshots") {
+ name = "divinemc"
+ credentials(PasswordCredentials::class)
+ }
+ }
+}
+// DivineMC end