pom.xml 2.7 KB

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