pom.xml 1.5 KB

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