pom.xml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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"
  8. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  9. <modelVersion>4.0.0</modelVersion>
  10. <parent>
  11. <groupId>org.cryptomator</groupId>
  12. <artifactId>main</artifactId>
  13. <version>1.1.0-SNAPSHOT</version>
  14. </parent>
  15. <artifactId>commons-test</artifactId>
  16. <name>Cryptomator common test dependencies</name>
  17. <description>Shared utilities for tests</description>
  18. <dependencies>
  19. <dependency>
  20. <groupId>junit</groupId>
  21. <artifactId>junit</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>de.bechte.junit</groupId>
  25. <artifactId>junit-hierarchicalcontextrunner</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.hamcrest</groupId>
  29. <artifactId>hamcrest-all</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.cryptomator</groupId>
  33. <artifactId>commons</artifactId>
  34. </dependency>
  35. </dependencies>
  36. </project>