Mentions légales du service

Skip to content

Build a fat jar

Vojtisek Didier requested to merge fat_jar into master

This MR build a fat jar (ie. a standalone jar with all dependencies except javafx modules)

  • with this jar the end user can run it using the following command:
java --module-path $JAVAFX_HOME/lib --add-modules javafx.controls,javafx.fxml -jar StorSimUi-0.0.1-SNAPSHOT.jar

where JAVAFX_HOME environment variable points to the java fx installation on your computer

these instructions are available in the README.md too

  • Compilation of the fat jar is done using the following command:
mvn package
  • the fat jar is also built on the pipeline (jar available in the artifacts of the pipeline)

This MR fixes https://gitlab.inria.fr/adt-mochy/mochy/-/issues/40

Merge request reports