pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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-invariants-tests</artifactId>
  15. <name>Cryptomator filesystem: Invariants tests</name>
  16. <description>Test only project which checks invariants of FileSystem implementations</description>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.cryptomator</groupId>
  20. <artifactId>filesystem-api</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.cryptomator</groupId>
  24. <artifactId>filesystem-crypto</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.cryptomator</groupId>
  28. <artifactId>filesystem-crypto-integration-tests</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.cryptomator</groupId>
  32. <artifactId>filesystem-inmemory</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.cryptomator</groupId>
  36. <artifactId>filesystem-nameshortening</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.cryptomator</groupId>
  40. <artifactId>filesystem-nio</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.cryptomator</groupId>
  44. <artifactId>commons-test</artifactId>
  45. </dependency>
  46. </dependencies>
  47. <build>
  48. <plugins>
  49. <plugin>
  50. <groupId>org.jacoco</groupId>
  51. <artifactId>jacoco-maven-plugin</artifactId>
  52. </plugin>
  53. </plugins>
  54. </build>
  55. </project>