Advertisement
Guest User

Untitled

a guest
May 16th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 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. <groupId>com</groupId>
  5. <artifactId>Test</artifactId>
  6. <packaging>war</packaging>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>Test Maven Webapp</name>
  9. <url>http://maven.apache.org</url>
  10. <dependencies>
  11. <dependency>
  12. <groupId>junit</groupId>
  13. <artifactId>junit</artifactId>
  14. <version>3.8.1</version>
  15. <scope>test</scope>
  16. </dependency>
  17.  
  18. <dependency>
  19. <groupId>org.openmrs.api</groupId>
  20. <artifactId>openmrs-api</artifactId>
  21. <version>${openMRSVersion}</version>
  22. <type>jar</type>
  23. <scope>provided</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.openmrs.api</groupId>
  27. <artifactId>openmrs-api</artifactId>
  28. <version>${openMRSVersion}</version>
  29. <type>test-jar</type>
  30. <scope>test</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.openmrs.web</groupId>
  34. <artifactId>openmrs-web</artifactId>
  35. <version>${openMRSVersion}</version>
  36. <type>jar</type>
  37. <scope>provided</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.openmrs.web</groupId>
  41. <artifactId>openmrs-web</artifactId>
  42. <version>${openMRSVersion}</version>
  43. <type>test-jar</type>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.openmrs.test</groupId>
  48. <artifactId>openmrs-test</artifactId>
  49. <version>${openMRSVersion}</version>
  50. <type>pom</type>
  51. <scope>test</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.openmrs.tools</groupId>
  55. <artifactId>openmrs-tools</artifactId>
  56. <version>${openMRSVersion}</version>
  57. </dependency>
  58.  
  59.  
  60. </dependencies>
  61. <properties>
  62. <openMRSVersion>1.9.11</openMRSVersion>
  63. </properties>
  64. <build>
  65. <finalName>Test</finalName>
  66. </build>
  67. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement