Skip to content

Commit

Permalink
Finalise layered mappings after resolving mapping dependency, not bef…
Browse files Browse the repository at this point in the history
…ore, to allow for lazy configuration
  • Loading branch information
isXander committed Dec 10, 2024
1 parent c80333b commit 8d7bdb5
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,10 +166,10 @@ private synchronized void setupMinecraft(ConfigContext configContext) throws Exc
extension.setMinecraftProvider(minecraftProvider);
minecraftProvider.provide();

// Created any layered mapping files.
final DependencyInfo mappingsDep = DependencyInfo.create(getProject(), Configurations.MAPPINGS);
// Created any layered mapping files. (After resolving the mappings dependency)
LayeredMappingsFactory.afterEvaluate(configContext);

final DependencyInfo mappingsDep = DependencyInfo.create(getProject(), Configurations.MAPPINGS);
final MappingConfiguration mappingConfiguration = MappingConfiguration.create(getProject(), configContext.serviceFactory(), mappingsDep, minecraftProvider);
extension.setMappingConfiguration(mappingConfiguration);
mappingConfiguration.applyToProject(getProject(), mappingsDep);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
/*
* This file is part of fabric-loom, licensed under the MIT License (MIT).
*
* Copyright (c) 2018-2021 FabricMC
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/

package net.fabricmc.loom.test.integration

import spock.lang.Specification
import spock.lang.Unroll

import net.fabricmc.loom.test.util.GradleProjectTestTrait

import static net.fabricmc.loom.test.LoomTestConstants.STANDARD_TEST_VERSIONS
import static org.gradle.testkit.runner.TaskOutcome.SUCCESS

class LazyLayeredMappingsTest extends Specification implements GradleProjectTestTrait {
@Unroll
def "Ensure mappings configuration is lazy when using layered #version"() {
setup:
def gradle = gradleProject(project: "lazyLayeredMappings", version: version)

when:
def result = gradle.run(task: "build")

then:
result.task(":build").outcome == SUCCESS

where:
version << STANDARD_TEST_VERSIONS
}
}
14 changes: 14 additions & 0 deletions src/test/resources/projects/lazyLayeredMappings/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
plugins {
id 'fabric-loom'
}

dependencies {
minecraft libs.minecraft
mappings project.provider {
loom.layered() {
officialMojangMappings()
}
}

modImplementation libs.fabricLoader
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[versions]
minecraft = "1.16.5"
fabricLoader = "0.11.3"

[libraries]
minecraft = { module = "com.mojang:minecraft", version.ref = "minecraft" }
fabricLoader = { module = "net.fabricmc:fabric-loader", version.ref = "fabricLoader" }

0 comments on commit 8d7bdb5

Please sign in to comment.