pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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>javax.servlet</groupId>
  31. <artifactId>javax.servlet-api</artifactId>
  32. <version>3.1.0</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.apache.jackrabbit</groupId>
  36. <artifactId>jackrabbit-webdav</artifactId>
  37. <version>${jackrabbit.version}</version>
  38. </dependency>
  39. <!-- Commons -->
  40. <dependency>
  41. <groupId>org.apache.commons</groupId>
  42. <artifactId>commons-lang3</artifactId>
  43. </dependency>
  44. <!-- Test -->
  45. <dependency>
  46. <groupId>org.eclipse.jetty</groupId>
  47. <artifactId>jetty-server</artifactId>
  48. <version>9.3.3.v20150827</version>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.eclipse.jetty</groupId>
  53. <artifactId>jetty-webapp</artifactId>
  54. <version>9.3.3.v20150827</version>
  55. <scope>test</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>commons-httpclient</groupId>
  59. <artifactId>commons-httpclient</artifactId>
  60. <scope>test</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.cryptomator</groupId>
  64. <artifactId>filesystem-inmemory</artifactId>
  65. <scope>test</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.cryptomator</groupId>
  69. <artifactId>filesystem-nio</artifactId>
  70. <scope>test</scope>
  71. </dependency>
  72. </dependencies>
  73. <build>
  74. <plugins>
  75. <plugin>
  76. <groupId>org.jacoco</groupId>
  77. <artifactId>jacoco-maven-plugin</artifactId>
  78. </plugin>
  79. </plugins>
  80. </build>
  81. </project>