pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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.11.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. <!-- JSON -->
  52. <dependency>
  53. <groupId>com.fasterxml.jackson.core</groupId>
  54. <artifactId>jackson-databind</artifactId>
  55. </dependency>
  56. <!-- Guava -->
  57. <dependency>
  58. <groupId>com.google.guava</groupId>
  59. <artifactId>guava</artifactId>
  60. </dependency>
  61. <!-- apache commons -->
  62. <dependency>
  63. <groupId>commons-io</groupId>
  64. <artifactId>commons-io</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.apache.commons</groupId>
  68. <artifactId>commons-lang3</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>commons-httpclient</groupId>
  72. <artifactId>commons-httpclient</artifactId>
  73. </dependency>
  74. <!-- DI -->
  75. <dependency>
  76. <groupId>com.google.dagger</groupId>
  77. <artifactId>dagger</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.google.dagger</groupId>
  81. <artifactId>dagger-compiler</artifactId>
  82. <scope>provided</scope>
  83. </dependency>
  84. <!-- Tests -->
  85. <dependency>
  86. <groupId>org.cryptomator</groupId>
  87. <artifactId>commons-test</artifactId>
  88. </dependency>
  89. </dependencies>
  90. </project>