Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2014
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4.  
  5. <parent>
  6. <groupId>org.openmrs.module</groupId>
  7. <artifactId>dms</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <groupId>org.openmrs.module</groupId>
  11. <artifactId>dms-api</artifactId>
  12. <packaging>jar</packaging>
  13. <name>Dms API</name>
  14. <description>API project for Dms</description>
  15.  
  16. <dependencies>
  17. <!--
  18. Add other dependencies from lib:
  19. <dependency>
  20. <groupId>org.other.library</groupId>
  21. <artifactId>library-name</artifactId>
  22. </dependency>
  23. -->
  24.  
  25. <dependency>
  26. <groupId>org.openmrs.api</groupId>
  27. <artifactId>openmrs-api</artifactId>
  28. <type>jar</type>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.openmrs.web</groupId>
  32. <artifactId>openmrs-web</artifactId>
  33. <type>jar</type>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.openmrs.test</groupId>
  37. <artifactId>openmrs-test</artifactId>
  38. <type>pom</type>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.openmrs.module</groupId>
  42. <artifactId>hospitalcore-api</artifactId>
  43. <version>1.5.0</version>
  44. <scope>provided</scope>
  45. </dependency>
  46. </dependencies>
  47.  
  48. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement