pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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-crypto</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.cryptomator</groupId>
  37. <artifactId>frontend-api</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.cryptomator</groupId>
  41. <artifactId>frontend-webdav</artifactId>
  42. </dependency>
  43. <!-- JSON -->
  44. <dependency>
  45. <groupId>com.fasterxml.jackson.core</groupId>
  46. <artifactId>jackson-databind</artifactId>
  47. </dependency>
  48. <!-- Guava -->
  49. <dependency>
  50. <groupId>com.google.guava</groupId>
  51. <artifactId>guava</artifactId>
  52. </dependency>
  53. <!-- apache commons -->
  54. <dependency>
  55. <groupId>commons-io</groupId>
  56. <artifactId>commons-io</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.commons</groupId>
  60. <artifactId>commons-lang3</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>commons-httpclient</groupId>
  64. <artifactId>commons-httpclient</artifactId>
  65. </dependency>
  66. <!-- DI -->
  67. <dependency>
  68. <groupId>com.google.dagger</groupId>
  69. <artifactId>dagger</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.google.dagger</groupId>
  73. <artifactId>dagger-compiler</artifactId>
  74. <scope>provided</scope>
  75. </dependency>
  76. <!-- Tests -->
  77. <dependency>
  78. <groupId>org.cryptomator</groupId>
  79. <artifactId>commons-test</artifactId>
  80. </dependency>
  81. </dependencies>
  82. </project>