mirror of
https://github.com/BX-Team/DivineMC.git
synced 2025-12-21 15:59:23 +00:00
Upstream has released updates that appear to apply and compile correctly Purpur Changes: PurpurMC/Purpur@d5c06b4 fix summon_entity effect attempting to add incorrect entity, closes #1545 PurpurMC/Purpur@faa1f93 add PlayerSetTrialSpawnerTypeWithEggEvent, fixes #1546 (#1547) PurpurMC/Purpur@1ab7990 Updated Upstream (Paper) PurpurMC/Purpur@8b987b1 fix infinityWorksWithoutArrows not working PurpurMC/Purpur@de2e7a7 Updated Upstream (Paper)
26 lines
775 B
Diff
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 ae3e7dca42037cfe0f90981724a9ecb217e8e4b7..9b9eafd38572317816553646ea38d0057a8c22fa 100644
|
|
--- a/build.gradle.kts
|
|
+++ b/build.gradle.kts
|
|
@@ -232,3 +232,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
|