Advertisement
Guest User

Untitled

a guest
Aug 14th, 2012
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.openmrs.module</groupId>
  6. <artifactId>radiology</artifactId>
  7. <version>1.4.8-SNAPSHOT</version>
  8. </parent>
  9. <groupId>org.openmrs.module</groupId>
  10. <artifactId>radiology-api</artifactId>
  11. <packaging>jar</packaging>
  12. <name>Radiology API</name>
  13. <description>API project for radiology</description>
  14.  
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.openmrs.api</groupId>
  18. <artifactId>openmrs-api</artifactId>
  19. <type>jar</type>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.openmrs.web</groupId>
  23. <artifactId>openmrs-web</artifactId>
  24. <type>jar</type>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.openmrs.test</groupId>
  28. <artifactId>openmrs-test</artifactId>
  29. <type>pom</type>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.openmrs.module</groupId>
  33. <artifactId>hospitalcore-api</artifactId>
  34. <version>1.4.10.11-SNAPSHOT</version>
  35. <scope>provided</scope>
  36. </dependency>
  37. </dependencies>
  38.  
  39. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement