pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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>1.1.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>commons</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.cryptomator</groupId>
  22. <artifactId>filesystem-api</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>commons-io</groupId>
  26. <artifactId>commons-io</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.apache.commons</groupId>
  30. <artifactId>commons-lang3</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.apache.commons</groupId>
  34. <artifactId>commons-collections4</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.google.guava</groupId>
  38. <artifactId>guava</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.cryptomator</groupId>
  42. <artifactId>commons</artifactId>
  43. </dependency>
  44. <!-- Tests -->
  45. <dependency>
  46. <groupId>org.cryptomator</groupId>
  47. <artifactId>commons-test</artifactId>
  48. </dependency>
  49. </dependencies>
  50. <build>
  51. <plugins>
  52. <plugin>
  53. <groupId>org.jacoco</groupId>
  54. <artifactId>jacoco-maven-plugin</artifactId>
  55. </plugin>
  56. </plugins>
  57. </build>
  58. </project>