pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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>filesystem-nameshortening</artifactId>
  17. <name>Cryptomator filesystem: Name shortening layer</name>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.cryptomator</groupId>
  21. <artifactId>filesystem-api</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.cryptomator</groupId>
  25. <artifactId>commons</artifactId>
  26. </dependency>
  27. <!-- Commons -->
  28. <dependency>
  29. <groupId>org.apache.commons</groupId>
  30. <artifactId>commons-lang3</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>commons-codec</groupId>
  34. <artifactId>commons-codec</artifactId>
  35. </dependency>
  36. <!-- JSON -->
  37. <dependency>
  38. <groupId>com.fasterxml.jackson.core</groupId>
  39. <artifactId>jackson-databind</artifactId>
  40. </dependency>
  41. <!-- DI -->
  42. <dependency>
  43. <groupId>com.google.dagger</groupId>
  44. <artifactId>dagger</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.google.dagger</groupId>
  48. <artifactId>dagger-compiler</artifactId>
  49. <scope>provided</scope>
  50. </dependency>
  51. <!-- Tests -->
  52. <dependency>
  53. <groupId>org.cryptomator</groupId>
  54. <artifactId>commons-test</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.cryptomator</groupId>
  58. <artifactId>filesystem-inmemory</artifactId>
  59. </dependency>
  60. </dependencies>
  61. <build>
  62. <plugins>
  63. <plugin>
  64. <groupId>org.jacoco</groupId>
  65. <artifactId>jacoco-maven-plugin</artifactId>
  66. </plugin>
  67. </plugins>
  68. </build>
  69. </project>