2025-01-27 14:49:25 -08:00
|
|
|
cd $PSScriptRoot
|
|
|
|
$Env:JAVA_HOME = "C:\Users\nathanm\Downloads\openjdk-23.0.1_windows-x64_bin\jdk-23.0.1"
|
|
|
|
$Env:PATH = "C:\Users\nathanm\Downloads\openjdk-23.0.1_windows-x64_bin\jdk-23.0.1\bin;$($Env:PATH)"
|
|
|
|
$Env:PATH_TO_FX="C:\Users\nathanm\Downloads\openjfx-23.0.1_windows-x64_bin-sdk\javafx-sdk-23.0.1\lib"
|
|
|
|
$modulePath = "$Env:PATH_TO_FX;P:\personal_root\projects\number-station\lib"
|
|
|
|
$modules = $(
|
|
|
|
"com.fasterxml.jackson.annotation",
|
|
|
|
"com.fasterxml.jackson.core",
|
|
|
|
"com.fasterxml.jackson.dataformat.xml",
|
|
|
|
"com.fasterxml.jackson.datatype.jsr310",
|
2025-02-04 19:27:15 -08:00
|
|
|
"com.jcraft.jsch",
|
2025-01-27 14:49:25 -08:00
|
|
|
"javafx.controls",
|
|
|
|
"javafx.fxml",
|
2025-01-29 22:24:18 -08:00
|
|
|
"org.apache.commons.cli",
|
2025-02-04 19:27:15 -08:00
|
|
|
"xmlrpc.common",
|
|
|
|
"result",
|
|
|
|
"wordpress.xmlrpc.client"
|
2025-01-27 14:49:25 -08:00
|
|
|
)
|
|
|
|
$addModules = $modules -join ","
|
|
|
|
java --module-path $modulePath --add-modules $addModules -cp out name.nathanmcrae.numbersstation.Main @args
|