Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
elfunesto committed Aug 27, 2024
1 parent 56dd982 commit e40848e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
23 changes: 12 additions & 11 deletions RCaNconstructor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,18 +63,18 @@
<dependency>
<groupId>io.github.mkpaz</groupId>
<artifactId>atlantafx-base</artifactId>
<version>1.1.0</version>
<version>2.0.1</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
<version>2.16.1</version>
</dependency>
<!-- excel java -->
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>4.1.0</version>
<version>5.3.0</version>
</dependency>
<!-- Rcaller -->
<dependency>
Expand All @@ -86,7 +86,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13</version>
<version>4.13.2</version>
<scope>compile</scope>
</dependency>

Expand Down Expand Up @@ -150,6 +150,7 @@
for the maven-dependency-plugin output. -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.4.2</version>
<configuration>
<outputDirectory>${project.build.directory}/dependency</outputDirectory>
</configuration>
Expand Down Expand Up @@ -229,7 +230,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.1.0</version>
<version>3.0.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -244,12 +245,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.2.0</version>
<version>3.8.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>3.0.0-M1</version>
<version>3.1.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -259,23 +260,23 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.1.2</version>
<version>3.7.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.2.0</version>
<version>3.0.0</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.9.1</version>
<version>4.0.0-M16</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
<version>3.4.0</version>
</plugin>
</plugins>
</pluginManagement>
Expand Down
4 changes: 2 additions & 2 deletions RCaNconstructor/src/main/java/fr/cm/Main/ObjectsManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import fr.cm.objects.Observation;
import fr.cm.preferences.Strings;
import org.apache.commons.io.IOUtils;

import java.io.UncheckedIOException;
import java.io.IOException;
import java.io.InputStream;
import java.nio.charset.StandardCharsets;
Expand Down Expand Up @@ -76,7 +76,7 @@ public static void makeMetaElementsList(){
List<String> elementsResource = new ArrayList<>();
try {
elementsResource = IOUtils.readLines(inst, StandardCharsets.UTF_8.name());
} catch (IOException e) {
} catch (UncheckedIOException e) {
e.printStackTrace();
}
for(String elementR : elementsResource){
Expand Down

0 comments on commit e40848e

Please sign in to comment.