Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Commit

Permalink
updated dependencys
Browse files Browse the repository at this point in the history
Bump tools from 1.4.3 to 1.5.2
Bump tiles-maven-plugin from 2.24 to 2.25
Add commons-codec 1.15
Minor code changes to support new dependencys
  • Loading branch information
scolastico committed Dec 11, 2021
1 parent 3fbf21e commit ba04f6f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
9 changes: 7 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<plugin>
<groupId>io.repaint.maven</groupId>
<artifactId>tiles-maven-plugin</artifactId>
<version>2.24</version>
<version>2.25</version>
<extensions>true</extensions>
<configuration>
<tiles>
Expand Down Expand Up @@ -111,7 +111,7 @@
<dependency>
<groupId>me.scolastico</groupId>
<artifactId>tools</artifactId>
<version>1.4.3</version>
<version>1.5.2</version>
</dependency>
<dependency>
<groupId>com.github.lalyos</groupId>
Expand All @@ -123,6 +123,11 @@
<artifactId>okhttp</artifactId>
<version>2.7.5</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.15</version>
</dependency>
</dependencies>

</project>
Original file line number Diff line number Diff line change
Expand Up @@ -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 {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {

Expand Down Expand Up @@ -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()));
Expand Down

0 comments on commit ba04f6f

Please sign in to comment.