Change to ParchmentMC mappings

This commit is contained in:
Jenny 2025-01-10 20:00:10 +01:00
parent fcf282bd46
commit 3a47e9954c
Signed by: Jenny
GPG Key ID: 2072A14E40940632
2 changed files with 3 additions and 1 deletions

View File

@ -3,6 +3,7 @@ plugins {
id 'idea' id 'idea'
id 'maven-publish' id 'maven-publish'
id 'net.minecraftforge.gradle' version '[6.0,6.2)' id 'net.minecraftforge.gradle' version '[6.0,6.2)'
id 'org.parchmentmc.librarian.forgegradle' version '1.+'
} }
version = mod_version version = mod_version
@ -30,7 +31,7 @@ minecraft {
// //
// Use non-default mappings at your own risk. They may not always work. // 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. // 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. // 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. // In most cases, it is not necessary to enable.

View File

@ -5,6 +5,7 @@ pluginManagement {
name = 'MinecraftForge' name = 'MinecraftForge'
url = 'https://maven.minecraftforge.net/' url = 'https://maven.minecraftforge.net/'
} }
maven { url = 'https://maven.parchmentmc.org' }
} }
} }