docs: Add game name in readme

This commit is contained in:
2026-03-01 15:30:08 +01:00
parent 6710426fad
commit 1c96f99f95
2 changed files with 13 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
# Terminal Game # Lost in a cave
A multiplayer terminal-based game built with Java, utilizing WebSockets for communication and Lanterna for the text-based user interface. A multiplayer terminal-based game built with Java, utilizing WebSockets for communication and Lanterna for the text-based user interface.

12
pom.xml
View File

@@ -20,8 +20,20 @@
<maven.compiler.source>25</maven.compiler.source> <maven.compiler.source>25</maven.compiler.source>
<maven.compiler.target>25</maven.compiler.target> <maven.compiler.target>25</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.version>5.11.4</junit.version>
</properties> </properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>