pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright (c) 2015 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.1.0-SNAPSHOT</version>
  15. </parent>
  16. <artifactId>frontend-webdav</artifactId>
  17. <name>Cryptomator frontend: WebDAV frontend</name>
  18. <description>Provides access via WebDAV to filesystems</description>
  19. <properties>
  20. <jackrabbit.version>2.11.3</jackrabbit.version>
  21. <jetty.version>9.3.3.v20150827</jetty.version>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.cryptomator</groupId>
  26. <artifactId>filesystem-api</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.cryptomator</groupId>
  30. <artifactId>commons</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.cryptomator</groupId>
  34. <artifactId>frontend-api</artifactId>
  35. </dependency>
  36. <!-- Jackrabbit -->
  37. <dependency>
  38. <groupId>javax.servlet</groupId>
  39. <artifactId>javax.servlet-api</artifactId>
  40. <version>3.1.0</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.apache.jackrabbit</groupId>
  44. <artifactId>jackrabbit-webdav</artifactId>
  45. <version>${jackrabbit.version}</version>
  46. </dependency>
  47. <!-- Jetty -->
  48. <dependency>
  49. <groupId>org.eclipse.jetty</groupId>
  50. <artifactId>jetty-server</artifactId>
  51. <version>${jetty.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.eclipse.jetty</groupId>
  55. <artifactId>jetty-webapp</artifactId>
  56. <version>${jetty.version}</version>
  57. </dependency>
  58. <!-- Guava -->
  59. <dependency>
  60. <groupId>com.google.guava</groupId>
  61. <artifactId>guava</artifactId>
  62. </dependency>
  63. <!-- Commons -->
  64. <dependency>
  65. <groupId>org.apache.commons</groupId>
  66. <artifactId>commons-lang3</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>commons-io</groupId>
  70. <artifactId>commons-io</artifactId>
  71. </dependency>
  72. <!-- DI -->
  73. <dependency>
  74. <groupId>com.google.dagger</groupId>
  75. <artifactId>dagger</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.google.dagger</groupId>
  79. <artifactId>dagger-compiler</artifactId>
  80. <scope>provided</scope>
  81. </dependency>
  82. <!-- Test -->
  83. <dependency>
  84. <groupId>org.cryptomator</groupId>
  85. <artifactId>commons-test</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.cryptomator</groupId>
  89. <artifactId>filesystem-inmemory</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.cryptomator</groupId>
  93. <artifactId>filesystem-crypto-integration-tests</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.cryptomator</groupId>
  97. <artifactId>filesystem-nameshortening</artifactId>
  98. <scope>test</scope>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.cryptomator</groupId>
  102. <artifactId>filesystem-crypto</artifactId>
  103. <scope>test</scope>
  104. </dependency>
  105. <dependency>
  106. <groupId>commons-httpclient</groupId>
  107. <artifactId>commons-httpclient</artifactId>
  108. <scope>test</scope>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.cryptomator</groupId>
  112. <artifactId>filesystem-nio</artifactId>
  113. <scope>test</scope>
  114. </dependency>
  115. </dependencies>
  116. <build>
  117. <plugins>
  118. <plugin>
  119. <groupId>org.jacoco</groupId>
  120. <artifactId>jacoco-maven-plugin</artifactId>
  121. </plugin>
  122. </plugins>
  123. </build>
  124. </project>