Spiel controller (#22)

* spielcontroller

* refactoring

* added http server for frontend

* added javaFx
This commit is contained in:
Valentin Heiserer
2024-04-16 18:40:20 +02:00
committed by GitHub
parent d4deabfde9
commit fb7ae31a0d
62 changed files with 504 additions and 249 deletions

16
pom.xml
View File

@@ -6,7 +6,11 @@
<build>
<finalName>schafkopf-backend-build</finalName>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
@@ -147,6 +151,16 @@
<groupId>pn532</groupId>
<version>1.0.2</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>17</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-web</artifactId>
<version>17</version>
</dependency>
</dependencies>
<groupId>org.example</groupId>