Does anyone have a script to compile LT in full, directly from the GIT structure, and create the ‘zip’ from it in one go?
I don’t feel much like inventing the wheel.
You can call mvn package
or mvn package -DskipTests
(faster, as it doesn’t run the tests). The ZIP will be in languagetool-standalone/target
.
Thanks. This gives me the possibility to make a local version with new dictionaries etc., without uploading those immediately.