pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Copyright (c) 2015 Markus Kreusch This file is licensed under the terms
  3. of the MIT license. See the LICENSE.txt file for more info. -->
  4. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  6. <modelVersion>4.0.0</modelVersion>
  7. <parent>
  8. <groupId>org.cryptomator</groupId>
  9. <artifactId>main</artifactId>
  10. <version>0.11.0-SNAPSHOT</version>
  11. </parent>
  12. <artifactId>filesystem-nio</artifactId>
  13. <name>Cryptomator filesystem: NIO-based physical layer</name>
  14. <description>FileSystem implementation to access the real file system of an operating system</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.cryptomator</groupId>
  18. <artifactId>filesystem-api</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>commons-io</groupId>
  22. <artifactId>commons-io</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.apache.commons</groupId>
  26. <artifactId>commons-lang3</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.apache.commons</groupId>
  30. <artifactId>commons-collections4</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.google.guava</groupId>
  34. <artifactId>guava</artifactId>
  35. </dependency>
  36. <!-- Tests -->
  37. <dependency>
  38. <groupId>org.cryptomator</groupId>
  39. <artifactId>commons-test</artifactId>
  40. </dependency>
  41. </dependencies>
  42. <build>
  43. <plugins>
  44. <plugin>
  45. <groupId>org.jacoco</groupId>
  46. <artifactId>jacoco-maven-plugin</artifactId>
  47. </plugin>
  48. </plugins>
  49. </build>
  50. </project>