diff --git a/pom.xml b/pom.xml index 04883d0..41d8e93 100644 --- a/pom.xml +++ b/pom.xml @@ -105,12 +105,12 @@ org.slf4j slf4j-log4j12 - 1.7.25 + 1.7.26 org.slf4j jcl-over-slf4j - 1.7.25 + 1.7.26 @@ -198,7 +198,7 @@ com.github.adminfaces admin-template - 1.0.0-RC21 + 1.0.0 org.omnifaces @@ -220,7 +220,7 @@ org.apache.poi poi-ooxml - 4.0.1 + 4.1.0 com.inversoft diff --git a/sharepoint/api/pom.xml b/sharepoint/api/pom.xml index bb2cb0b..470d778 100644 --- a/sharepoint/api/pom.xml +++ b/sharepoint/api/pom.xml @@ -237,28 +237,23 @@ junit junit - 4.12 test org.apache.commons commons-lang3 - 3.7 de.muehlencord.shared shared-util - 1.0-SNAPSHOT org.slf4j slf4j-api - 1.7.25 org.slf4j slf4j-log4j12 - 1.7.25 test diff --git a/util/src/main/java/de/muehlencord/shared/util/file/FileUtil.java b/util/src/main/java/de/muehlencord/shared/util/file/FileUtil.java index 87bc25c..cdb06ac 100644 --- a/util/src/main/java/de/muehlencord/shared/util/file/FileUtil.java +++ b/util/src/main/java/de/muehlencord/shared/util/file/FileUtil.java @@ -87,7 +87,7 @@ public abstract class FileUtil { } /** - * copies the givn source file to the given destination filename + * copies the given source file to the given destination filename * * @param source the file to copy from * @param destination the destination filename to copy the source file to @@ -95,6 +95,7 @@ public abstract class FileUtil { * * @deprecated use Files.copy instead */ + @Deprecated public static boolean copyFileTo(File source, File destination) { try (FileInputStream fis = new FileInputStream(source); FileOutputStream fos = new FileOutputStream(destination)) {