Quilt Import Utility

Loading versions...

tl;dr

Here's a tl;dr of the different component versions using the gradle.properties file.

Loading...

Quilt Mappings

To add Quilt Mappings to a loom-based project, here are the main buildscript changes required:

Loading...

QuiltFlower Decompiler

Here are the main buildscript changes required to use quiltflower in loom-based projects:

build.gradle

plugins {
	id 'io.github.juuxel.loom-quiltflower' version '1.8.+' // For loom 0.8-0.9, 0.11+
	id 'io.github.juuxel.loom-quiltflower-mini' version '1.3.+' // For loom 0.10
}

The plugin is already included with quilt-loom!

Quilt Loader

Here are the main buildscript changes required:

plugins {
	id 'org.quiltmc.loom' version '1.+' // Required for the loader to work.
}

dependencies {
	modImplementation "org.quiltmc:quilt-loader:${project.loader_version}"
}

Quilt Standard Libraries

As of now, the Quilt Standard Libraries are still in development and experimental!

Here are the main buildscript changes required:

Loading...

And here's a complete list of the QSL modules by libraries:

Repositories

repositories {
	maven {
		name 'Quilt'
		url 'https://maven.quiltmc.org/repository/release'
	}
}