Guest User

Untitled

a guest
Jan 8th, 2013
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. <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/maven-v4_0_0.xsd">
  2. <parent>
  3. <groupId>org.openmrs</groupId>
  4. <artifactId>openmrs</artifactId>
  5. <version>1.10.0-SNAPSHOT</version>
  6. </parent>
  7. <modelVersion>4.0.0</modelVersion>
  8. <groupId>org.openmrs.test</groupId>
  9. <artifactId>openmrs-test</artifactId>
  10. <packaging>pom</packaging>
  11. <name>openmrs-test</name>
  12. <description>The test dependencies for openmrs</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework</groupId>
  16. <artifactId>spring-test</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>junit</groupId>
  20. <artifactId>junit</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.databene</groupId>
  24. <artifactId>databene-benerator</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.h2database</groupId>
  28. <artifactId>h2</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.dbunit</groupId>
  32. <artifactId>dbunit</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>xmlunit</groupId>
  36. <artifactId>xmlunit</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.mockito</groupId>
  40. <artifactId>mockito-all</artifactId>
  41. <scope>test</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.powermock</groupId>
  45. <artifactId>powermock-module-junit4</artifactId>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.powermock</groupId>
  50. <artifactId>powermock-api-mockito</artifactId>
  51. <scope>test</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.hamcrest</groupId>
  55. <artifactId>hamcrest-all</artifactId>
  56. </dependency>
  57. </dependencies>
  58. </project>
Advertisement
Add Comment
Please, Sign In to add comment