Go to file
leo60228 c635aeea01
Depend on loom 0.11 (#6)
2022-01-31 13:06:31 -08:00
.github/workflows Ready for transfer 2021-11-17 09:55:48 -08:00
gradle/wrapper Initial Commit 2021-10-22 17:29:47 -07:00
src/main/java/org/quiltmc/quiltmappings/loom Update QuiltMappingsOnLoomPlugin.java 2021-11-29 16:44:48 -08:00
test Ready for transfer 2021-11-17 09:55:48 -08:00
.gitignore Fix a bunch of issues 2021-10-23 01:35:03 -07:00
HEADER Ready for transfer 2021-11-17 09:55:48 -08:00
LICENSE Ready for transfer 2021-11-17 09:55:48 -08:00
README.md Update README.md (#4) 2021-11-29 16:45:02 -08:00
build.gradle.kts Depend on loom 0.11 (#6) 2022-01-31 13:06:31 -08:00
gradlew Initial Commit 2021-10-22 17:29:47 -07:00
gradlew.bat Initial Commit 2021-10-22 17:29:47 -07:00
settings.gradle.kts Ready for transfer 2021-11-17 09:55:48 -08:00

README.md

Quilt Mappings on Loom

The time has finally arrived! Quilt Mappings are now usable in Loom!

Ever wanted to use mappings other than Yarn or MojMap?

Quilt Mappings is a Yarn derivative that allows inspiration from MojMap, which allows Quilt Mappings to map the obscure constants in Minecraft code and more. This gradle plugin allows Quilt Mappings to be used in Loom and Fabric environments. Currently, only 1.17.1+ has support, with no plans of backporting to earlier versions.

Benefits of Quilt Mappings:

  1. Faster turn around.
    • For the past couple weeks, Quilt Mappings has been out before intermediary. While this doesn't help too much in loom, it is something to look forward to in the future.
  2. Consistent names.
    • Quilt Mapping names are never mismatched, meaning you won't find issues where names swap between versions.
  3. Familiarity of Yarn with the completeness of MojMap.
    • While not complete, Quilt Mappings has the goal of 100% mapping coverage for Minecraft. Any help toward this goal would be appreciated as well!

How to use Quilt Mappings:

settings.gradle:

pluginManagement {
    repositories {
        maven { url = "https://maven.quiltmc.org/repository/release" }
    }
}

build.gradle

plugins {
  // ...
  id "org.quiltmc.quilt-mappings-on-loom" version "3.1.1"
}

// ...

dependencies {
   mappings(loom.layered {
      addLayer(quiltMappings.mappings("org.quiltmc:quilt-mappings:${minecraft_version}+build.${project.quilt_mappings}:v2"))
   })
}