client-lib, client-app und server-app aus den jeweiligen projekten importiert. api-definition begonnen zu implementieren

This commit is contained in:
2026-01-23 17:10:32 +01:00
parent 118055dffd
commit ae3824e6db
182 changed files with 218505 additions and 56 deletions

View File

@@ -23,6 +23,33 @@
<artifactId>client-lib</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<!-- https://mvnrepository.com/artifact/org.openjfx/javafx-controls -->
<!-- GPLv2+CE License https://openjdk.java.net/legal/gplv2+ce.html-->
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>23.0.1</version>
</dependency>
<dependency>
<!-- https://mvnrepository.com/artifact/org.controlsfx/controlsfx -->
<!-- The 3-Clause BSD License http://www.opensource.org/licenses/bsd-license.php -->
<groupId>org.controlsfx</groupId>
<artifactId>controlsfx</artifactId>
<version>11.2.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.8</version>
<configuration>
<mainClass>at.vvo.omds.client.gui.MainView</mainClass>
</configuration>
</plugin>
</plugins>
</build>
</project>