pom.xml 849 B

1234567891011121314151617181920212223
  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>0.11.0-SNAPSHOT</version>
  11. </parent>
  12. <artifactId>commons-test</artifactId>
  13. <name>Cryptomator common test dependencies</name>
  14. <description>Shared utilities for tests</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.hamcrest</groupId>
  18. <artifactId>hamcrest-all</artifactId>
  19. </dependency>
  20. </dependencies>
  21. </project>