pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright (c) 2014 Sebastian Stenzel
  4. This file is licensed under the terms of the MIT license.
  5. See the LICENSE.txt file for more info.
  6. Contributors:
  7. Sebastian Stenzel - initial API and implementation
  8. -->
  9. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  10. <modelVersion>4.0.0</modelVersion>
  11. <parent>
  12. <groupId>org.cryptomator</groupId>
  13. <artifactId>main</artifactId>
  14. <version>1.2.5</version>
  15. </parent>
  16. <artifactId>ui</artifactId>
  17. <name>Cryptomator GUI</name>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.cryptomator</groupId>
  21. <artifactId>commons</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.cryptomator</groupId>
  25. <artifactId>filesystem-api</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.cryptomator</groupId>
  29. <artifactId>filesystem-nio</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.cryptomator</groupId>
  33. <artifactId>filesystem-nameshortening</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.cryptomator</groupId>
  37. <artifactId>filesystem-crypto</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.cryptomator</groupId>
  41. <artifactId>filesystem-charsets</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.cryptomator</groupId>
  45. <artifactId>filesystem-stats</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.cryptomator</groupId>
  49. <artifactId>frontend-api</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.cryptomator</groupId>
  53. <artifactId>frontend-webdav</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.cryptomator</groupId>
  57. <artifactId>jni</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.cryptomator</groupId>
  61. <artifactId>keychain</artifactId>
  62. </dependency>
  63. <!-- CryptoLib -->
  64. <dependency>
  65. <groupId>org.cryptomator</groupId>
  66. <artifactId>cryptolib</artifactId>
  67. </dependency>
  68. <!-- EasyBind -->
  69. <dependency>
  70. <groupId>org.fxmisc.easybind</groupId>
  71. <artifactId>easybind</artifactId>
  72. </dependency>
  73. <!-- JSON -->
  74. <dependency>
  75. <groupId>com.fasterxml.jackson.core</groupId>
  76. <artifactId>jackson-databind</artifactId>
  77. </dependency>
  78. <!-- Guava -->
  79. <dependency>
  80. <groupId>com.google.guava</groupId>
  81. <artifactId>guava</artifactId>
  82. </dependency>
  83. <!-- apache commons -->
  84. <dependency>
  85. <groupId>commons-io</groupId>
  86. <artifactId>commons-io</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.apache.commons</groupId>
  90. <artifactId>commons-lang3</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>commons-httpclient</groupId>
  94. <artifactId>commons-httpclient</artifactId>
  95. </dependency>
  96. <!-- DI -->
  97. <dependency>
  98. <groupId>com.google.dagger</groupId>
  99. <artifactId>dagger</artifactId>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.google.dagger</groupId>
  103. <artifactId>dagger-compiler</artifactId>
  104. <scope>provided</scope>
  105. </dependency>
  106. <!-- Tests -->
  107. <dependency>
  108. <groupId>org.cryptomator</groupId>
  109. <artifactId>commons-test</artifactId>
  110. </dependency>
  111. <!-- Zxcvbn -->
  112. <dependency>
  113. <groupId>com.nulab-inc</groupId>
  114. <artifactId>zxcvbn</artifactId>
  115. <version>1.1.1</version>
  116. </dependency>
  117. </dependencies>
  118. </project>