aboutsummaryrefslogtreecommitdiffstats
path: root/settings.gradle
diff options
context:
space:
mode:
authorKrakenied <Krakenied1@gmail.com>2024-04-28 08:22:31 +0200
committerLeonardo Bishop <13875753+LMBishop@users.noreply.github.com>2024-04-30 17:38:22 +0100
commit3627b9a957f40d6e04365ae762e59435571fcb54 (patch)
treeedc3986bc35c64160bc4d82cc81ceeb71c4260a4 /settings.gradle
parent0166e270984ccbe0d04a0ce947f01c35e16de099 (diff)
Update to Paper-API 1.20.5
Java 21 is now required Add java-downgrader plugin to support older Java versions Migrate shadow from com.github.johnrengelman.shadow to io.github.goooler.shadow to fix the project compilation using Java 21 and Gradle 8.7 https://github.com/johnrengelman/shadow/pull/876
Diffstat (limited to 'settings.gradle')
-rw-r--r--settings.gradle10
1 files changed, 9 insertions, 1 deletions
diff --git a/settings.gradle b/settings.gradle
index e0953f0a..b2d792fc 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -1,4 +1,12 @@
+pluginManagement {
+ repositories {
+ // io.github.goooler.shadow
+ maven { url = 'https://plugins.gradle.org/m2/' }
+ // net.raphimc.java-downgrader
+ maven { url = 'https://maven.lenni0451.net/releases' }
+ }
+}
+
rootProject.name = 'Quests'
include 'common'
include 'bukkit'
-