diff --git a/pom.xml b/pom.xml index 3708cde..470b20f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ io.repaint.maven tiles-maven-plugin - 2.24 + 2.25 true @@ -111,7 +111,7 @@ me.scolastico tools - 1.4.3 + 1.5.2 com.github.lalyos @@ -123,6 +123,11 @@ okhttp 2.7.5 + + commons-codec + commons-codec + 1.15 + \ No newline at end of file diff --git a/src/main/java/me/scolastico/runner/manager/Application.java b/src/main/java/me/scolastico/runner/manager/Application.java index 2cf7806..9d946fe 100644 --- a/src/main/java/me/scolastico/runner/manager/Application.java +++ b/src/main/java/me/scolastico/runner/manager/Application.java @@ -15,7 +15,7 @@ import me.scolastico.tools.routine.Routine; import me.scolastico.tools.routine.RoutineManager; import me.scolastico.tools.simplified.SimplifiedResourceFileReader; -import org.apache.commons.lang.RandomStringUtils; +import org.apache.commons.lang3.RandomStringUtils; public class Application { diff --git a/src/main/java/me/scolastico/runner/manager/etc/CommandExecuter.java b/src/main/java/me/scolastico/runner/manager/etc/CommandExecuter.java index c6161dc..5441866 100644 --- a/src/main/java/me/scolastico/runner/manager/etc/CommandExecuter.java +++ b/src/main/java/me/scolastico/runner/manager/etc/CommandExecuter.java @@ -11,7 +11,6 @@ import java.util.ArrayList; import me.scolastico.runner.manager.Application; import org.apache.commons.codec.digest.DigestUtils; -import org.jetbrains.annotations.NotNull; public class CommandExecuter { @@ -39,7 +38,6 @@ public static String[] run(String command) throws InterruptedException, IOExcept } } - @NotNull private static String[] getStrings(Process process) throws InterruptedException, IOException { process.waitFor(); BufferedReader buf = new BufferedReader(new InputStreamReader(process.getInputStream()));