diff --git a/build.gradle b/build.gradle index a3c0a9d9..40c44a50 100644 --- a/build.gradle +++ b/build.gradle @@ -11,6 +11,7 @@ buildscript { plugins { id 'net.minecraftforge.gradle' version '5.1.+' + id 'org.parchmentmc.librarian.forgegradle' version '1.+' } apply plugin: 'org.spongepowered.mixin' @@ -37,7 +38,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: 'official', version: minecraft_version + mappings channel: 'parchment', version: "${parchment_version}-${minecraft_version}" accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') diff --git a/gradle.properties b/gradle.properties index f846865b..e07e4dc6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,4 +3,5 @@ org.gradle.daemon=false minecraft_version=1.16.5 forge_version=36.2.39 lazydfu_version=3249059 -mekanism_version=1.16.5-10.1.2.457 \ No newline at end of file +mekanism_version=1.16.5-10.1.2.457 +parchment_version=2022.03.06 \ No newline at end of file diff --git a/settings.gradle b/settings.gradle index 9a8b2ac9..f13a1985 100644 --- a/settings.gradle +++ b/settings.gradle @@ -2,6 +2,7 @@ pluginManagement { repositories { gradlePluginPortal() maven { url = 'https://maven.minecraftforge.net/' } + maven { url = 'https://maven.parchmentmc.org' } } }