commit 4e050b6a242c6c5e5e5bb1fd3ba8ccad0ddc5c3e parent 2311f65da3662e6865b5933be9b3a6960d477000 Author: Friedel Schön <[email protected]> Date: Wed, 5 Oct 2022 14:38:36 +0200 change com.example.isygameclient to nl.isygameclient Diffstat:
8 files changed, 7 insertions(+), 8 deletions(-)
diff --git a/.gitignore b/.gitignore @@ -33,3 +33,5 @@ target/ # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml hs_err_pid* replay_pid* + +.DS_Store +\ No newline at end of file diff --git a/pom.xml b/pom.xml @@ -4,18 +4,14 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> - <groupId>com.example</groupId> + <groupId>nl.isygameclient</groupId> <artifactId>ISYGameClient</artifactId> <version>1.0-SNAPSHOT</version> <name>ISYGameClient</name> - <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <junit.version>5.9.0</junit.version> </properties> - - - <dependencies> <dependency> <groupId>org.openjfx</groupId> @@ -77,7 +73,7 @@ <!-- Default configuration for running with: mvn clean javafx:run --> <id>default-cli</id> <configuration> - <mainClass>com.example.isygameclient/com.example.isygameclient.Application</mainClass> + <mainClass>nl.isygameclient/nl.isygameclient.Application</mainClass> <launcher>app</launcher> <jlinkZipName>app</jlinkZipName> <jlinkImageName>app</jlinkImageName> diff --git a/settings.properties b/settings.properties @@ -1,6 +1,6 @@ #Application Settings -#Tue Sep 27 17:59:22 CEST 2022 -screenWidth=680 +#Wed Oct 05 14:33:10 CEST 2022 fullscreen=false screenHeight=480 +screenWidth=680 title=ISY Game Client diff --git a/src/main/java/com/example/isygameclient/Application.java b/src/main/java/nl/isygameclient/Application.java diff --git a/src/main/java/com/example/isygameclient/controllers/HelloController.java b/src/main/java/nl/isygameclient/controllers/HelloController.java diff --git a/src/main/java/com/example/isygameclient/models/SimpleCalculator.java b/src/main/java/nl/isygameclient/models/SimpleCalculator.java diff --git a/src/main/java/com/example/isygameclient/util/Settings.java b/src/main/java/nl/isygameclient/util/Settings.java diff --git a/src/main/java/com/example/isygameclient/util/SettingsHandler.java b/src/main/java/nl/isygameclient/util/SettingsHandler.java