pom.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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>1.1.0-SNAPSHOT</version>
  13. </parent>
  14. <artifactId>filesystem-api</artifactId>
  15. <name>Cryptomator filesystem: API</name>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.cryptomator</groupId>
  19. <artifactId>commons</artifactId>
  20. </dependency>
  21. <!-- Guava -->
  22. <dependency>
  23. <groupId>com.google.guava</groupId>
  24. <artifactId>guava</artifactId>
  25. </dependency>
  26. <!-- apache commons -->
  27. <dependency>
  28. <groupId>commons-io</groupId>
  29. <artifactId>commons-io</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.apache.commons</groupId>
  33. <artifactId>commons-lang3</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.commons</groupId>
  37. <artifactId>commons-collections4</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.cryptomator</groupId>
  41. <artifactId>commons-test</artifactId>
  42. </dependency>
  43. </dependencies>
  44. <build>
  45. <plugins>
  46. <plugin>
  47. <groupId>org.jacoco</groupId>
  48. <artifactId>jacoco-maven-plugin</artifactId>
  49. </plugin>
  50. </plugins>
  51. </build>
  52. </project>