diff --git a/.idea/dictionaries/project.xml b/.idea/dictionaries/project.xml index c19aeeb..5566a46 100644 --- a/.idea/dictionaries/project.xml +++ b/.idea/dictionaries/project.xml @@ -5,6 +5,7 @@ gamelist playerlist tictactoe + toop vmoptions diff --git a/.idea/encodings.xml b/.idea/encodings.xml index aa00ffa..a50f68a 100644 --- a/.idea/encodings.xml +++ b/.idea/encodings.xml @@ -1,6 +1,8 @@ + + diff --git a/.idea/misc.xml b/.idea/misc.xml index 67f7df6..97dd9e8 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -13,7 +13,7 @@ - + \ No newline at end of file diff --git a/app/pom.xml b/app/pom.xml index c53d719..5232dc7 100644 --- a/app/pom.xml +++ b/app/pom.xml @@ -6,80 +6,10 @@ 0.1 - org.toop.app.Main + org.toop.Main - - - maven-surefire-plugin - 3.5.4 - - stress - - - - maven-failsafe-plugin - 3.5.4 - - - org.apache.maven.plugins - maven-shade-plugin - 3.6.1 - - - package - - - shade - - - - - - ${main-class} - - - - - - - - com.diffplug.spotless - spotless-maven-plugin - 2.46.1 - - - origin/main - - - - - - .gitattributes - .gitignore - - - - - - true - 4 - - - - - - - 1.28.0 - - true - true - - - - - \ No newline at end of file diff --git a/app/src/main/java/org/toop/app/Main.java b/app/src/main/java/org/toop/Main.java similarity index 75% rename from app/src/main/java/org/toop/app/Main.java rename to app/src/main/java/org/toop/Main.java index 09adc71..e64efec 100644 --- a/app/src/main/java/org/toop/app/Main.java +++ b/app/src/main/java/org/toop/Main.java @@ -1,4 +1,4 @@ -package org.toop.app; +package org.toop; public class Main { public static void main(String[] args) { diff --git a/framework/pom.xml b/framework/pom.xml index 6788db0..ee97310 100644 --- a/framework/pom.xml +++ b/framework/pom.xml @@ -5,12 +5,85 @@ pism_framework 0.1 - + + 25 + 25 + + UTF-8 + + io.netty netty-all 4.2.6.Final + + + org.junit + junit-bom + 5.13.4 + pom + import + + + org.junit.jupiter + junit-jupiter-api + 5.13.4 + test + + + org.junit.jupiter + junit-jupiter-engine + 5.13.4 + test + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.5.4 + + + + org.apache.maven.plugins + maven-failsafe-plugin + 3.5.4 + + + org.mockito + mockito-core + 5.19.0 + test + + + org.mockito + mockito-junit-jupiter + 5.19.0 + test + + + + org.apache.logging.log4j + log4j-api + 2.25.1 + + + org.apache.logging.log4j + log4j-core + 2.25.1 + + + org.slf4j + slf4j-api + 2.0.17 + + + org.slf4j + slf4j-simple + 2.0.17 + + + \ No newline at end of file diff --git a/game/src/test/java/org/toop/tictactoe/GameBaseTest.java b/game/src/test/java/org/toop/tictactoe/GameBaseTest.java index ed1f616..ff025c4 100644 --- a/game/src/test/java/org/toop/tictactoe/GameBaseTest.java +++ b/game/src/test/java/org/toop/tictactoe/GameBaseTest.java @@ -1,4 +1,4 @@ -package org.toop.game.tictactoe; +package java.org.toop.tictactoe; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; diff --git a/pom.xml b/pom.xml index 2516c0d..147c3eb 100644 --- a/pom.xml +++ b/pom.xml @@ -7,6 +7,7 @@ org.toop pism 0.1 + pom 25 @@ -15,86 +16,164 @@ UTF-8 - - - org.junit - junit-bom - 5.13.4 - pom - import - - - org.junit.jupiter - junit-jupiter-api - 5.13.4 - test - - - org.junit.jupiter - junit-jupiter-engine - 5.13.4 - test - - - - org.apache.maven.plugins - maven-surefire-plugin - 3.5.4 - - - - org.apache.maven.plugins - maven-failsafe-plugin - 3.5.4 - - - org.mockito - mockito-core - 5.19.0 - test - - - org.mockito - mockito-junit-jupiter - 5.19.0 - test - + + + + org.junit + junit-bom + 5.13.4 + pom + import + + + org.junit.jupiter + junit-jupiter-api + 5.13.4 + test + + + org.junit.jupiter + junit-jupiter-engine + 5.13.4 + test + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.5.4 + + + + org.apache.maven.plugins + maven-failsafe-plugin + 3.5.4 + + + org.mockito + mockito-core + 5.19.0 + test + + + org.mockito + mockito-junit-jupiter + 5.19.0 + test + - - org.apache.logging.log4j - log4j-api - 2.25.1 - - - org.apache.logging.log4j - log4j-core - 2.25.1 - - - org.slf4j - slf4j-api - 2.0.17 - - - org.slf4j - slf4j-simple - 2.0.17 - + + org.apache.logging.log4j + log4j-api + 2.25.1 + + + org.apache.logging.log4j + log4j-core + 2.25.1 + + + org.slf4j + slf4j-api + 2.0.17 + + + org.slf4j + slf4j-simple + 2.0.17 + - - - com.diffplug.spotless - spotless-maven-plugin - 2.46.1 - - - - com.google.errorprone - error_prone_annotations - 2.42.0 - - + + + com.diffplug.spotless + spotless-maven-plugin + 2.46.1 + + + + com.google.errorprone + error_prone_annotations + 2.42.0 + + + + + + + + + maven-surefire-plugin + 3.5.4 + + stress + + + + maven-failsafe-plugin + 3.5.4 + + + org.apache.maven.plugins + maven-shade-plugin + 3.6.1 + + + + package + + + shade + + + + + + app.src.java.org.toop.Main + + + + + + + + com.diffplug.spotless + spotless-maven-plugin + 2.46.1 + + + origin/main + + + + + + .gitattributes + .gitignore + + + + + + true + 4 + + + + + + + 1.28.0 + + true + true + + + + + + + framework