pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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>0.11.0-SNAPSHOT</version>
  15. </parent>
  16. <artifactId>jackrabbit-filesystem-adapter</artifactId>
  17. <name>Jackrabbit filesystem-WebDAV-adapter</name>
  18. <description>WebDAV servlet based on Apache Jackrabbit serving files from a filesystem</description>
  19. <properties>
  20. <jackrabbit.version>2.11.0</jackrabbit.version>
  21. </properties>
  22. <dependencies>
  23. <!-- Filesystem -->
  24. <dependency>
  25. <groupId>org.cryptomator</groupId>
  26. <artifactId>filesystem-api</artifactId>
  27. </dependency>
  28. <!-- Jackrabbit -->
  29. <dependency>
  30. <groupId>org.apache.jackrabbit</groupId>
  31. <artifactId>jackrabbit-webdav</artifactId>
  32. <version>${jackrabbit.version}</version>
  33. </dependency>
  34. <!-- Commons -->
  35. <dependency>
  36. <groupId>org.apache.commons</groupId>
  37. <artifactId>commons-lang3</artifactId>
  38. </dependency>
  39. <!-- Test -->
  40. <dependency>
  41. <groupId>org.eclipse.jetty</groupId>
  42. <artifactId>jetty-server</artifactId>
  43. <version>9.3.3.v20150827</version>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.eclipse.jetty</groupId>
  48. <artifactId>jetty-webapp</artifactId>
  49. <version>9.3.3.v20150827</version>
  50. <scope>test</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>commons-httpclient</groupId>
  54. <artifactId>commons-httpclient</artifactId>
  55. <scope>test</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.cryptomator</groupId>
  59. <artifactId>filesystem-inmemory</artifactId>
  60. <scope>test</scope>
  61. </dependency>
  62. </dependencies>
  63. <build>
  64. <plugins>
  65. <plugin>
  66. <groupId>org.jacoco</groupId>
  67. <artifactId>jacoco-maven-plugin</artifactId>
  68. </plugin>
  69. </plugins>
  70. </build>
  71. </project>