From 66274185a3ed82cf0e3cf30fcc7d8f0d93d0bd40 Mon Sep 17 00:00:00 2001 From: Speiger Date: Fri, 27 Aug 2021 08:26:29 +0200 Subject: [PATCH] Fixed, Code should be compiled as UTF-8 --- .classpath | 20 -------------------- build.gradle | 5 +++++ 2 files changed, 5 insertions(+), 20 deletions(-) diff --git a/.classpath b/.classpath index 8b3d57e..4857be4 100644 --- a/.classpath +++ b/.classpath @@ -6,26 +6,6 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/build.gradle b/build.gradle index c86fcc6..da03bb1 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,11 @@ apply plugin: 'java' apply plugin: 'eclipse' +tasks.withType(JavaCompile) { + options.encoding = 'UTF-8' + options.compilerArgs << "-Xlint:deprecation" +} + eclipse { classpath { downloadJavadoc = true