diff --git a/gameController/pom.xml b/gameController/pom.xml index 38099bbf..ce245a92 100644 --- a/gameController/pom.xml +++ b/gameController/pom.xml @@ -1,15 +1,67 @@ - - + + 4.0.0 team-7 seng302 1.0-SNAPSHOT - 4.0.0 - 1 + + jar + gameController + gameController + 1.0-SNAPSHOT + + + + + junit + junit + 4.12 + test + + + + + 1.8 + 1.8 + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.5.1 + + + org.apache.maven.plugins + maven-shade-plugin + 2.4.3 + + + + + seng302.App + ${maven.compiler.source} + ${maven.compiler.target} + + + + + + + package + + shade + + + + + + \ No newline at end of file diff --git a/visualiser/pom.xml b/visualiser/pom.xml index 156c8e60..f33141c1 100644 --- a/visualiser/pom.xml +++ b/visualiser/pom.xml @@ -53,6 +53,11 @@ network 1.0-SNAPSHOT + + seng302 + gameController + 1.0-SNAPSHOT + diff --git a/visualiser/src/main/java/seng302/App.java b/visualiser/src/main/java/seng302/App.java index a003c681..fca492eb 100644 --- a/visualiser/src/main/java/seng302/App.java +++ b/visualiser/src/main/java/seng302/App.java @@ -31,6 +31,10 @@ public class App extends Application { FXMLLoader loader = new FXMLLoader(getClass().getResource("/scenes/main.fxml")); Parent root = loader.load(); Scene scene = new Scene(root, 1200, 800); + + InputChecker inputChecker = new InputChecker(); + inputChecker.runWithScene(scene); + stage.setScene(scene); stage.setTitle("RaceVision - Team 7"); stage.show();