This commit is contained in:
2026-04-24 15:43:05 +03:30
parent 9b074cfdf0
commit 158a504a33
6 changed files with 410 additions and 45 deletions
+15
View File
@@ -13,5 +13,20 @@
<maven.compiler.target>23</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<!-- GSON: Google JSON parsing library -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.11.0</version>
</dependency>
<!-- Jackson: Another JSON parsing library -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.17.2</version>
</dependency>
</dependencies>
</project>