diff options
author | Bryson Steck <brysonsteck@protonmail.com> | 2023-05-16 22:43:38 -0600 |
---|---|---|
committer | Bryson Steck <brysonsteck@protonmail.com> | 2023-05-16 22:43:38 -0600 |
commit | eb8709af1483696f4053bfea12f912201294826f (patch) | |
tree | 9e07d3ee245432bc3e52d60c61e509deb4e682f1 /app/build.gradle | |
parent | 966571cac730139e43186ca29667b8fc127b27d3 (diff) | |
download | ServerCraft-eb8709af1483696f4053bfea12f912201294826f.tar ServerCraft-eb8709af1483696f4053bfea12f912201294826f.tar.gz ServerCraft-eb8709af1483696f4053bfea12f912201294826f.tar.bz2 |
bulk replace of package names to hopefully fix location error
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/build.gradle b/app/build.gradle index 2122a79..5270585 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -53,7 +53,7 @@ dependencies { application { // Define the main class for the application. - mainClass = 'xyz.brysonsteck.servercraft.MainKt' + mainClass = 'xyz.brysonsteck.ServerCraft.MainKt' applicationName = "ServerCraft" } @@ -75,7 +75,7 @@ jar { } task pack(type: io.github.fvarrui.javapackager.gradle.PackageTask, dependsOn: build) { - mainClass = 'xyz.brysonsteck.servercraft.MainKt' + mainClass = 'xyz.brysonsteck.ServerCraft.MainKt' bundleJre = true generateInstaller = true administratorRequired = false @@ -112,3 +112,4 @@ javafx { version = "20" modules = ['javafx.controls', 'javafx.fxml', 'javafx.graphics'] } + |