Added simple logging, first test

This commit is contained in:
maciejrusek
2026-04-07 21:05:38 +02:00
parent 5d9417011c
commit 5431a7cfb7
5 changed files with 72 additions and 2 deletions

21
pom.xml
View File

@@ -14,4 +14,25 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.25.3</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.25.3</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>6.0.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>