#!/usr/bin/env bash
APP_DIR="$(cd "$(dirname "$0")" && pwd)"
java --module-path "$APP_DIR/lib" \
  --add-modules javafx.controls,javafx.graphics,javafx.swing \
  -cp "$APP_DIR/NPSharp.jar:$APP_DIR/lib/*" \
  br.com.corelabs.npsharpfx.Main
