diff --git a/README.md b/README.md index 68039a18..eaed111a 100644 --- a/README.md +++ b/README.md @@ -140,7 +140,7 @@ Launch the built jar. To run the server, your working directory should contain the `config.ini` file. ``` -java -jar target/araknemu-0.11-alpha-jar-with-dependencies.jar +java -jar target/araknemu-0.12-alpha-jar-with-dependencies.jar ``` ## About the project diff --git a/pom.xml b/pom.xml index 4c15ade6..ad941393 100644 --- a/pom.xml +++ b/pom.xml @@ -30,26 +30,27 @@ UTF-8 ${com.google.errorprone:javac:jar} + 3.42.0 fr.quatrevieux.araknemu araknemu - 0.11-alpha + 0.12-alpha io.netty netty-all - 4.1.104.Final + 4.1.111.Final org.apache.commons commons-lang3 - 3.14.0 + 3.15.0 org.apache.commons commons-text - 1.11.0 + 1.12.0 args4j @@ -59,7 +60,7 @@ org.apache.logging.log4j log4j-core - 2.22.1 + 2.23.1 org.ini4j @@ -69,13 +70,12 @@ org.mariadb.jdbc mariadb-java-client - 3.3.2 + 3.4.1 org.xerial sqlite-jdbc - - 3.42.0.1 + 3.46.0.0 fr.arakne @@ -90,32 +90,32 @@ com.github.seancfoley ipaddress - 5.4.0 + 5.5.0 org.apache.groovy groovy - 4.0.17 + 4.0.22 com.google.code.gson gson - 2.10.1 + 2.11.0 io.github.cdimascio dotenv-java - 2.3.1 + 2.3.2 org.checkerframework checker-qual - 3.42.0 + ${checkerframework.version} org.checkerframework checker-util - 3.42.0 + ${checkerframework.version} com.google.errorprone @@ -127,13 +127,13 @@ org.junit.jupiter junit-jupiter-api - 5.10.1 + 5.10.3 test org.junit.jupiter junit-jupiter-engine - 5.10.1 + 5.10.3 test @@ -155,7 +155,7 @@ org.apache.maven.plugins maven-surefire-plugin - 3.2.3 + 3.3.1 classes 4 @@ -164,7 +164,7 @@ org.apache.maven.plugins maven-jar-plugin - 3.3.0 + 3.4.2 @@ -178,7 +178,7 @@ maven-assembly-plugin - 3.6.0 + 3.7.1 @@ -205,7 +205,7 @@ org.jacoco jacoco-maven-plugin - 0.8.11 + 0.8.12 @@ -227,7 +227,7 @@ org.apache.maven.plugins maven-checkstyle-plugin - 3.3.1 + 3.4.0 checkstyle.xml @@ -282,14 +282,14 @@ maven-compiler-plugin - 3.12.1 + 3.13.0 true org.checkerframework checker - 3.42.0 + ${checkerframework.version} @@ -309,7 +309,7 @@ org.checkerframework checker - 3.42.0 + ${checkerframework.version} @@ -335,7 +335,7 @@ org.apache.maven.plugins maven-compiler-plugin - 3.12.1 + 3.13.0 true diff --git a/src/test/java/fr/quatrevieux/araknemu/game/fight/ai/factory/type/SupportTest.java b/src/test/java/fr/quatrevieux/araknemu/game/fight/ai/factory/type/SupportTest.java index 39c8a83f..37eda22e 100644 --- a/src/test/java/fr/quatrevieux/araknemu/game/fight/ai/factory/type/SupportTest.java +++ b/src/test/java/fr/quatrevieux/araknemu/game/fight/ai/factory/type/SupportTest.java @@ -24,6 +24,7 @@ import fr.quatrevieux.araknemu.game.fight.ai.simulation.Simulator; import fr.quatrevieux.araknemu.game.fight.fighter.Fighter; import fr.quatrevieux.araknemu.game.fight.fighter.invocation.DoubleFighter; +import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; @@ -41,6 +42,7 @@ public void setUp() throws Exception { dataSet.pushFunctionalSpells(); } + @AfterEach @Override public void tearDown() throws ContainerException { super.tearDown();