pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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>0.12.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-stats</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.cryptomator</groupId>
  45. <artifactId>frontend-api</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.cryptomator</groupId>
  49. <artifactId>frontend-webdav</artifactId>
  50. </dependency>
  51. <!-- EasyBind -->
  52. <dependency>
  53. <groupId>org.fxmisc.easybind</groupId>
  54. <artifactId>easybind</artifactId>
  55. </dependency>
  56. <!-- JSON -->
  57. <dependency>
  58. <groupId>com.fasterxml.jackson.core</groupId>
  59. <artifactId>jackson-databind</artifactId>
  60. </dependency>
  61. <!-- Guava -->
  62. <dependency>
  63. <groupId>com.google.guava</groupId>
  64. <artifactId>guava</artifactId>
  65. </dependency>
  66. <!-- apache commons -->
  67. <dependency>
  68. <groupId>commons-io</groupId>
  69. <artifactId>commons-io</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.commons</groupId>
  73. <artifactId>commons-lang3</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>commons-httpclient</groupId>
  77. <artifactId>commons-httpclient</artifactId>
  78. </dependency>
  79. <!-- DI -->
  80. <dependency>
  81. <groupId>com.google.dagger</groupId>
  82. <artifactId>dagger</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.google.dagger</groupId>
  86. <artifactId>dagger-compiler</artifactId>
  87. <scope>provided</scope>
  88. </dependency>
  89. <!-- Tests -->
  90. <dependency>
  91. <groupId>org.cryptomator</groupId>
  92. <artifactId>commons-test</artifactId>
  93. </dependency>
  94. </dependencies>
  95. </project>