Reorder modules alphabetically

This commit is contained in:
Nathan McRae 2025-02-08 17:50:10 -08:00
parent 475808acd8
commit 7cff7e7559
2 changed files with 5 additions and 6 deletions

View File

@ -7,13 +7,12 @@ $modules = $(
"com.fasterxml.jackson.core", "com.fasterxml.jackson.core",
"com.fasterxml.jackson.dataformat.xml", "com.fasterxml.jackson.dataformat.xml",
"com.fasterxml.jackson.datatype.jsr310", "com.fasterxml.jackson.datatype.jsr310",
#"com.tearsofaunicorn.wordpress.api", "com.jcraft.jsch",
"wordpress.xmlrpc.client",
"result",
"javafx.controls", "javafx.controls",
"javafx.fxml", "javafx.fxml",
"org.apache.commons.cli", "org.apache.commons.cli",
"com.jcraft.jsch" "result",
"wordpress.xmlrpc.client"
) )
$addModules = $modules -join "," $addModules = $modules -join ","
javac --module-path $modulePath --add-modules $addModules .\name\nathanmcrae\numbersstation\*.java -d out javac --module-path $modulePath --add-modules $addModules .\name\nathanmcrae\numbersstation\*.java -d out

View File

@ -12,9 +12,9 @@ $modules = $(
"javafx.controls", "javafx.controls",
"javafx.fxml", "javafx.fxml",
"org.apache.commons.cli", "org.apache.commons.cli",
"xmlrpc.common",
"result", "result",
"wordpress.xmlrpc.client" "wordpress.xmlrpc.client",
"xmlrpc.common"
) )
$addModules = $modules -join "," $addModules = $modules -join ","
java --module-path $modulePath --add-modules $addModules -cp out name.nathanmcrae.numbersstation.Main @args java --module-path $modulePath --add-modules $addModules -cp out name.nathanmcrae.numbersstation.Main @args