From 301a6fbc1d2d633d10346709cc5b71dbfcedb659 Mon Sep 17 00:00:00 2001 From: Sergeant Acoustic Date: Fri, 26 Dec 2025 04:32:35 +0000 Subject: [PATCH] Add parchment mappings --- build.gradle | 3 ++- settings.gradle | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 8124fb8..fad2972 100644 --- a/build.gradle +++ b/build.gradle @@ -3,6 +3,7 @@ plugins { id 'idea' id 'maven-publish' id 'net.minecraftforge.gradle' version '[6.0,6.2)' + id 'org.parchmentmc.librarian.forgegradle' version '1.+' } version = '1.0.1'//'1.20.1-1.0.1' @@ -31,7 +32,7 @@ minecraft { // // Use non-default mappings at your own risk. They may not always work. // Simply re-run your setup task after changing the mappings to update your workspace. - mappings channel: mapping_channel, version: mapping_version + mappings channel: 'parchment', version: '2023.09.03-1.20.1' // When true, this property will have all Eclipse/IntelliJ IDEA run configurations run the "prepareX" task for the given run configuration before launching the game. // In most cases, it is not necessary to enable. diff --git a/settings.gradle b/settings.gradle index 758df8b..cdbae04 100644 --- a/settings.gradle +++ b/settings.gradle @@ -5,9 +5,10 @@ pluginManagement { name = 'MinecraftForge' url = 'https://maven.minecraftforge.net/' } + maven { url = 'https://maven.parchmentmc.org' } } } plugins { id 'org.gradle.toolchains.foojay-resolver-convention' version '0.7.0' -} \ No newline at end of file +}