From 7e6c04a44e9ffb70b3b4d755428c3150eddc03cb Mon Sep 17 00:00:00 2001 From: Benjamin Dweck Date: Tue, 1 Sep 2020 15:09:16 +0200 Subject: [PATCH] Fixed repo URL --- build.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 567f247..5afe16e 100644 --- a/build.gradle +++ b/build.gradle @@ -8,7 +8,7 @@ plugins { repositories { maven { - url "https://repo.rudefox.io/maven-public" + url "https://repo.rudefox.io/repository/maven-public/" } mavenCentral() @@ -31,6 +31,10 @@ run { standardInput = System.in } +tasks.withType(JavaCompile) { + options.encoding = 'UTF-8' +} + def junitVersion = "5.6.2" tasks.withType(Test) {