Remove -experimental from loom-no-remap (#1440)

This commit is contained in:
modmuss
2025-11-09 15:33:08 +00:00
committed by GitHub
parent 84d6d87650
commit ec236a34bd
4 changed files with 4 additions and 4 deletions

View File

@@ -243,7 +243,7 @@ gradlePlugin {
implementationClass = 'net.fabricmc.loom.LoomCompanionGradlePlugin' implementationClass = 'net.fabricmc.loom.LoomCompanionGradlePlugin'
} }
fabricLoomNoRemap { fabricLoomNoRemap {
id = 'net.fabricmc.fabric-loom-no-remap-experimental' id = 'net.fabricmc.fabric-loom-no-remap'
implementationClass = 'net.fabricmc.loom.LoomNoRemapGradlePlugin' implementationClass = 'net.fabricmc.loom.LoomNoRemapGradlePlugin'
} }
} }

View File

@@ -31,7 +31,7 @@ import org.gradle.api.Project;
* A marker plugin to indicate to the main loom plugin not to setup for remapping. * A marker plugin to indicate to the main loom plugin not to setup for remapping.
*/ */
public class LoomNoRemapGradlePlugin implements Plugin<Project> { public class LoomNoRemapGradlePlugin implements Plugin<Project> {
public static final String NAME = "net.fabricmc.fabric-loom-no-remap-experimental"; public static final String NAME = "net.fabricmc.fabric-loom-no-remap";
@Override @Override
public void apply(Project target) { public void apply(Project target) {

View File

@@ -1,5 +1,5 @@
plugins { plugins {
id 'net.fabricmc.fabric-loom-no-remap-experimental' id 'net.fabricmc.fabric-loom-no-remap'
} }
repositories { repositories {

View File

@@ -1,7 +1,7 @@
// This is used by a range of tests that append to this file before running the gradle tasks. // This is used by a range of tests that append to this file before running the gradle tasks.
// Can be used for tests that require minimal custom setup // Can be used for tests that require minimal custom setup
plugins { plugins {
id 'net.fabricmc.fabric-loom-no-remap-experimental' id 'net.fabricmc.fabric-loom-no-remap'
id 'maven-publish' id 'maven-publish'
} }