module-info.java 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. import org.cryptomator.integrations.autostart.AutoStartProvider;
  2. import org.cryptomator.integrations.keychain.KeychainAccessProvider;
  3. import org.cryptomator.integrations.tray.TrayIntegrationProvider;
  4. import org.cryptomator.integrations.uiappearance.UiAppearanceProvider;
  5. module org.cryptomator.desktop {
  6. requires org.cryptomator.cryptofs;
  7. requires org.cryptomator.frontend.dokany;
  8. // requires org.cryptomator.frontend.fuse;
  9. requires org.cryptomator.frontend.webdav;
  10. requires org.cryptomator.integrations.api;
  11. requires java.rmi;
  12. requires java.desktop;
  13. requires java.net.http;
  14. requires javafx.base;
  15. requires javafx.graphics;
  16. requires javafx.controls;
  17. requires javafx.fxml;
  18. requires com.tobiasdiez.easybind;
  19. requires com.google.common;
  20. requires com.google.gson; // really?
  21. requires org.slf4j;
  22. requires org.apache.commons.lang3;
  23. /* TODO: filename-based modules: */
  24. requires dagger;
  25. requires static javax.inject; /* ugly dagger/guava crap */
  26. requires java.jwt;
  27. requires com.fasterxml.jackson.databind; // TODO: tmp fix, waiting for https://github.com/auth0/java-jwt/pull/484
  28. requires zxcvbn;
  29. requires logback.classic;
  30. requires logback.core;
  31. uses AutoStartProvider;
  32. uses KeychainAccessProvider;
  33. uses TrayIntegrationProvider;
  34. uses UiAppearanceProvider;
  35. opens org.cryptomator.common.settings to com.google.gson;
  36. opens org.cryptomator.launcher to java.rmi;
  37. opens org.cryptomator.common to javafx.fxml;
  38. opens org.cryptomator.common.vaults to javafx.fxml;
  39. opens org.cryptomator.ui.addvaultwizard to javafx.fxml;
  40. opens org.cryptomator.ui.changepassword to javafx.fxml;
  41. opens org.cryptomator.ui.common to javafx.fxml;
  42. opens org.cryptomator.ui.controls to javafx.fxml;
  43. opens org.cryptomator.ui.forgetPassword to javafx.fxml;
  44. opens org.cryptomator.ui.fxapp to javafx.fxml;
  45. opens org.cryptomator.ui.keyloading.masterkeyfile to javafx.fxml;
  46. opens org.cryptomator.ui.mainwindow to javafx.fxml;
  47. opens org.cryptomator.ui.migration to javafx.fxml;
  48. opens org.cryptomator.ui.preferences to javafx.fxml;
  49. opens org.cryptomator.ui.quit to javafx.fxml;
  50. opens org.cryptomator.ui.recoverykey to javafx.fxml;
  51. opens org.cryptomator.ui.removevault to javafx.fxml;
  52. opens org.cryptomator.ui.stats to javafx.fxml;
  53. opens org.cryptomator.ui.unlock to javafx.fxml;
  54. opens org.cryptomator.ui.vaultoptions to javafx.fxml;
  55. opens org.cryptomator.ui.wrongfilealert to javafx.fxml;
  56. }