summary refs log tree commit diff stats
diff options
context:
space:
mode:
authormodmuss50 <modmuss50@gmail.com>2021-11-10 14:30:09 +0000
committermodmuss50 <modmuss50@gmail.com>2021-11-10 15:28:04 +0000
commit466c1a804a8a239e477aeaa851bf983cd5a4c1d7 (patch)
treef85ed4aeb51ad3e3155f4ad3c3d4639130fd7418
parentc8d88521ed2f605746ce72bb3b6049c649b7814e (diff)
Small cleanup
-rw-r--r--build.gradle9
1 files changed, 0 insertions, 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
 }