Skip to content

Commit

Permalink
Upgrade versions (plugins & dependencies) + quality issues
Browse files Browse the repository at this point in the history
  • Loading branch information
axel3rd committed Aug 22, 2024
1 parent 7e8c0e8 commit e80d794
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
18 changes: 9 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,27 +19,27 @@
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<version>3.13.0</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M4</version>
<version>3.4.0</version>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<version>3.4.2</version>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.1</version>
<version>3.6.0</version>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>3.0.0-M1</version>
<version>3.1.3</version>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.0-M1</version>
<version>3.1.1</version>
<configuration>
<goals>install</goals>
</configuration>
Expand Down Expand Up @@ -74,13 +74,13 @@
<version.java>1.8</version.java>
<maven.compiler.source>${version.java}</maven.compiler.source>
<maven.compiler.target>${version.java}</maven.compiler.target>
<log4j.version>2.17.1</log4j.version>
<log4j.version>2.23.1</log4j.version>
</properties>
<dependencies>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.7</version>
<version>2.16.1</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
Expand All @@ -95,7 +95,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
5 changes: 3 additions & 2 deletions src/test/java/org/blondin/fa/MainTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

import java.io.File;

import junit.framework.TestCase;

import org.apache.commons.io.FileUtils;
import org.blondin.fa.io.ZipTools;
import org.junit.Test;

import junit.framework.TestCase;

/**
* Test class
*/
Expand All @@ -18,6 +18,7 @@ public class MainTest extends TestCase {
*
* @throws Exception Problem
*/
@Override
public void setUp() throws Exception {
super.setUp();
FileUtils.deleteDirectory(new File("target/dataTest"));
Expand Down

0 comments on commit e80d794

Please sign in to comment.