pom.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright (c) 2015 Sebastian Stenzel
  4. This file is licensed under the terms of the MIT license.
  5. See the LICENSE.txt file for more info.
  6. Contributors:
  7. Sebastian Stenzel - initial API and implementation
  8. -->
  9. <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">
  10. <modelVersion>4.0.0</modelVersion>
  11. <parent>
  12. <groupId>org.cryptomator</groupId>
  13. <artifactId>main</artifactId>
  14. <version>1.1.0-SNAPSHOT</version>
  15. </parent>
  16. <artifactId>filesystem-inmemory</artifactId>
  17. <name>Cryptomator filesystem: In-memory mock</name>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.cryptomator</groupId>
  21. <artifactId>filesystem-api</artifactId>
  22. </dependency>
  23. <!-- Tests -->
  24. <dependency>
  25. <groupId>org.cryptomator</groupId>
  26. <artifactId>commons-test</artifactId>
  27. </dependency>
  28. </dependencies>
  29. <build>
  30. <plugins>
  31. <plugin>
  32. <groupId>org.jacoco</groupId>
  33. <artifactId>jacoco-maven-plugin</artifactId>
  34. </plugin>
  35. </plugins>
  36. </build>
  37. </project>