pom.xml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  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>1.0.1</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>de.bechte.junit</groupId>
  22. <artifactId>junit-hierarchicalcontextrunner</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.hamcrest</groupId>
  26. <artifactId>hamcrest-all</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.cryptomator</groupId>
  30. <artifactId>commons</artifactId>
  31. </dependency>
  32. </dependencies>
  33. </project>