All Projects → FabricMC → fabric-loom

FabricMC / fabric-loom

Licence: MIT license
Gradle build system plugin used to automate the setup of a minecraft mod development environment.

Programming Languages

java
68154 projects - #9 most used programming language
groovy
2714 projects
kotlin
9241 projects

Projects that are alternatives of or similar to fabric-loom

Gradle Changelog Plugin
Plugin for parsing and managing the Changelog in a "keep a changelog" style.
Stars: ✭ 102 (-32%)
Mutual labels:  intellij, gradle-plugin
Samples
JavaFX samples to run with different options and build tools
Stars: ✭ 352 (+134.67%)
Mutual labels:  eclipse, intellij
gradle-cleaner-intellij-plugin
Force clear delaying & no longer needed Gradle tasks.
Stars: ✭ 26 (-82.67%)
Mutual labels:  intellij, gradle-plugin
Intellij Plugin Save Actions
Supports configurable, Eclipse like, save actions, including "organize imports", "reformat code" and "rearrange code".
Stars: ✭ 440 (+193.33%)
Mutual labels:  eclipse, intellij
Gradle Eclipse Aar Plugin
Gradle plugin to use Android AAR libraries on Eclipse.
Stars: ✭ 127 (-15.33%)
Mutual labels:  eclipse, gradle-plugin
watchdog
IntelliJ & Eclipse plugin for monitoring how Java applications are developed and tested
Stars: ✭ 18 (-88%)
Mutual labels:  eclipse, intellij
openjfx-docs
Getting started guide for JavaFX 11
Stars: ✭ 70 (-53.33%)
Mutual labels:  eclipse, intellij
Bnd
Bnd/Bndtools. Tooling to build OSGi bundles including Eclipse, Maven, and Gradle plugins.
Stars: ✭ 446 (+197.33%)
Mutual labels:  eclipse, gradle-plugin
Servicestack.java
ServiceStack Java Libraries and Apps
Stars: ✭ 10 (-93.33%)
Mutual labels:  eclipse, intellij
gradle-grammar-kit-plugin
Gradle plugin for generating lexers (with JFlex) and BNF parsers (with Grammar-Kit) for IntelliJ language plugins
Stars: ✭ 76 (-49.33%)
Mutual labels:  intellij, gradle-plugin
ginkgo4j
A Java BDD Testing Framework (based on RSpec and Ginkgo)
Stars: ✭ 25 (-83.33%)
Mutual labels:  eclipse, intellij
native-build-tools
Native-image plugins for various build tools
Stars: ✭ 168 (+12%)
Mutual labels:  gradle-plugin
androidNativeBundle
a gradle plugin that support publish c/c++ headers to 'aar' and depend those 'aar'
Stars: ✭ 60 (-60%)
Mutual labels:  gradle-plugin
plugin-intellij
jsDelivr plugin for JetBrains IntelliJ based editors
Stars: ✭ 18 (-88%)
Mutual labels:  intellij
intellij-pokemon-progress
A Pokémon themed progress bar for IntelliJ IDEA.
Stars: ✭ 70 (-53.33%)
Mutual labels:  intellij
FirebaseTestLab-Android
No description or website provided.
Stars: ✭ 50 (-66.67%)
Mutual labels:  gradle-plugin
dummytext-plugin
"Dummy Text Generator" plugin for Jetbrains IDEs
Stars: ✭ 31 (-79.33%)
Mutual labels:  intellij
laboratory
Feature flags for multi-module Kotlin Android projects
Stars: ✭ 71 (-52.67%)
Mutual labels:  gradle-plugin
jetbrains-theme
🎨 A modern, productivity-increaser theme for all JetBrains IDEs
Stars: ✭ 108 (-28%)
Mutual labels:  intellij
kfc-plugins
Kotlin/JS Fast Configuration
Stars: ✭ 37 (-75.33%)
Mutual labels:  gradle-plugin

Fabric Loom

A Gradle plugin to setup a deobfuscated development environment for Minecraft mods. Primarily used in the Fabric toolchain.

  • Has built in support for tiny mappings (Used by Yarn)
  • Utilises the Fernflower and CFR decompilers to generate source code with comments.
  • Designed to support modern versions of Minecraft (Tested with 1.14.4 and upwards)
  • Built in support for IntelliJ IDEA, Eclipse and Visual Studio Code to generate run configurations for Minecraft.
  • Loom targets the latest version of Gradle 7 or newer
  • Supports Java 16 upwards

Use Loom to develop mods

To get started developing your own mods please follow the guide on Setting up a mod development environment.

Debugging Loom (Only needed if you want to work on Loom itself)

This guide assumes you are using IntelliJ IDEA, other IDE's have not been tested; your experience may vary.

  1. Import as a Gradle project by opening the build.gradle
  2. Create a Gradle run configuration to run the following tasks build publishToMavenLocal -x test. This will build Loom and publish to a local maven repo without running the test suite. You can run it now.
  3. Prepare a project for using the local version of Loom:
    • A good starting point is to clone the fabric-example-mod into your working directory
    • Add mavenLocal() to the repositories:
      • If you're using id 'fabric-loom' inside plugins, the correct repositories block is inside pluginManagement in settings.gradle
      • If you're using apply plugin: for Loom, the correct repositories block is inside buildscript in build.gradle
    • Change the loom version to 0.6.local. For example id 'fabric-loom' version '0.6.local'
  4. Create a Gradle run configuration:
    • Set the Gradle project path to the project you have just configured above
    • Set some tasks to run, such as clean build you can change these to suit your needs.
    • Add the run configuration you created earlier to the "Before Launch" section to rebuild loom each time you debug
  5. You should now be able to run the configuration in debug mode, with working breakpoints.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].