You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For testRuntimeClasspath and testCompileClasspath to correctly inherit runtimeClasspath and compileClasspath respectively when loom.splitEnvironmentSourceSets() is called.
Actual:
testRuntimeClasspath and testCompileClasspath fail to inherit the parent classpaths, only getting the modRuntimeClasspathMapped and modCompileClasspathMapped configuration. testAnnotationProcessor is the only configuration that correctly inherits from annotationProcessor.
Steps to Reproduce:
Call loom.splitEnvironmentSourceSets() in your standard build.gradle for modding.
Run ./gradlew dependencies
Problems this causes:
The inability to call Minecraft's dependencies and Minecraft itself within the test source sets.
mod* taking priority on any dependencies that Minecraft normally declares.
This was seen via the Quilt Loader 0.18.1 betas on QFAPI, which seems to be able to correctly resolve GSON despite it not being present in testmodCompileClasspath on Quilt Loader 0.17.10?
Manually defined configurations also can fail to inherit from the main classpaths, even when explicitly called.
The text was updated successfully, but these errors were encountered:
Expected:
For
testRuntimeClasspath
andtestCompileClasspath
to correctly inheritruntimeClasspath
andcompileClasspath
respectively whenloom.splitEnvironmentSourceSets()
is called.Actual:
testRuntimeClasspath
andtestCompileClasspath
fail to inherit the parent classpaths, only getting themodRuntimeClasspathMapped
andmodCompileClasspathMapped
configuration.testAnnotationProcessor
is the only configuration that correctly inherits fromannotationProcessor
.Steps to Reproduce:
loom.splitEnvironmentSourceSets()
in your standard build.gradle for modding../gradlew dependencies
Problems this causes:
testmodCompileClasspath
on Quilt Loader 0.17.10?The text was updated successfully, but these errors were encountered: