Skip to content

Commit

Permalink
Fixed transitive dependency issue
Browse files Browse the repository at this point in the history
  • Loading branch information
eggohito committed Dec 22, 2023
1 parent 2a988cd commit a28f3af
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,12 @@ processResources {
}
}

configurations.configureEach {
resolutionStrategy {
force("net.fabricmc:fabric-loader:$loader_version")
}
}

// ensure that the encoding is set to UTF-8, no matter what the system default is
// this fixes some edge cases with special characters not displaying correctly
// see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
import net.minecraft.util.Identifier;
import net.minecraft.util.collection.DefaultedList;
import net.minecraft.util.math.MathHelper;
import org.jetbrains.annotations.Nullable;

import javax.annotation.Nullable;
import java.util.LinkedList;
import java.util.List;

Expand Down

0 comments on commit a28f3af

Please sign in to comment.