pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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.0-SNAPSHOT</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. <!-- EasyBind -->
  56. <dependency>
  57. <groupId>org.fxmisc.easybind</groupId>
  58. <artifactId>easybind</artifactId>
  59. </dependency>
  60. <!-- JSON -->
  61. <dependency>
  62. <groupId>com.fasterxml.jackson.core</groupId>
  63. <artifactId>jackson-databind</artifactId>
  64. </dependency>
  65. <!-- Guava -->
  66. <dependency>
  67. <groupId>com.google.guava</groupId>
  68. <artifactId>guava</artifactId>
  69. </dependency>
  70. <!-- apache commons -->
  71. <dependency>
  72. <groupId>commons-io</groupId>
  73. <artifactId>commons-io</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.commons</groupId>
  77. <artifactId>commons-lang3</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>commons-httpclient</groupId>
  81. <artifactId>commons-httpclient</artifactId>
  82. </dependency>
  83. <!-- DI -->
  84. <dependency>
  85. <groupId>com.google.dagger</groupId>
  86. <artifactId>dagger</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.google.dagger</groupId>
  90. <artifactId>dagger-compiler</artifactId>
  91. <scope>provided</scope>
  92. </dependency>
  93. <!-- Tests -->
  94. <dependency>
  95. <groupId>org.cryptomator</groupId>
  96. <artifactId>commons-test</artifactId>
  97. </dependency>
  98. <!-- Zxcvbn -->
  99. <dependency>
  100. <groupId>com.nulab-inc</groupId>
  101. <artifactId>zxcvbn</artifactId>
  102. <version>1.1.1</version>
  103. </dependency>
  104. </dependencies>
  105. </project>