Add support for parameters to start and update gradle to compile full jar

This commit is contained in:
2020-10-12 23:03:26 +02:00
parent 285ec1074a
commit d7b2d192d8
19 changed files with 153 additions and 241 deletions
+11
View File
@@ -0,0 +1,11 @@
package de.jeyp91;
public class StatusHolder {
private static boolean error = false;
public static void setError() {
error = true;
}
public static boolean getError() {
return error;
}
}