pom.xml 1.0 KB

1234567891011121314151617181920212223242526272829303132
  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>junit</groupId>
  18. <artifactId>junit</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.hamcrest</groupId>
  22. <artifactId>hamcrest-all</artifactId>
  23. <scope>compile</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.hamcrest</groupId>
  27. <artifactId>hamcrest-all</artifactId>
  28. </dependency>
  29. </dependencies>
  30. </project>