#11 Very basic implementation with dummy data

This commit is contained in:
David Guler
2022-10-17 17:01:50 +02:00
parent 9a29499c39
commit 5f53bb86c6
10 changed files with 159 additions and 7 deletions
+5
View File
@@ -1,8 +1,13 @@
module ch.zhaw.gartenverwaltung {
requires javafx.controls;
requires javafx.fxml;
requires com.fasterxml.jackson.databind;
opens ch.zhaw.gartenverwaltung to javafx.fxml;
opens ch.zhaw.gartenverwaltung.types to com.fasterxml.jackson.databind;
// opens ch.zhaw.gartenverwaltung.types to com.fasterxml.jackson.databind;
exports ch.zhaw.gartenverwaltung;
exports ch.zhaw.gartenverwaltung.types;
exports ch.zhaw.gartenverwaltung.json;
}