From 466c1a804a8a239e477aeaa851bf983cd5a4c1d7 Mon Sep 17 00:00:00 2001 From: modmuss50 Date: Wed, 10 Nov 2021 14:30:09 +0000 Subject: Small cleanup --- build.gradle | 9 --------- 1 file changed, 9 deletions(-) diff --git a/build.gradle b/build.gradle index 78c7b65..973ff94 100644 --- a/build.gradle +++ b/build.gradle @@ -26,9 +26,6 @@ dependencies { // Fabric API. This is technically optional, but you probably want it anyway. modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" - - // PSA: Some older mods, compiled on Loom 0.2.1, might have outdated Maven POMs. - // You may need to force-disable transitiveness on them. } processResources { @@ -40,12 +37,6 @@ processResources { } tasks.withType(JavaCompile).configureEach { - // 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 - // If Javadoc is generated, this must be specified in that task too. - it.options.encoding = "UTF-8" - // Minecraft 1.17 (21w19a) upwards uses Java 16. it.options.release = 16 } -- cgit 1.4.1