Advertisement
Guest User

Untitled

a guest
Apr 19th, 2020
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.72 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. <modelVersion>4.0.0</modelVersion>
  3.  
  4. <parent>
  5. <groupId>org.openmrs.module</groupId>
  6. <artifactId>providermanagement</artifactId>
  7. <version>2.11.0-SNAPSHOT</version>
  8. </parent>
  9.  
  10. <artifactId>providermanagement-api-2.0</artifactId>
  11. <packaging>jar</packaging>
  12. <name>Provider Management Module API</name>
  13. <description>API project for ProviderManagement</description>
  14.  
  15. <dependencies>
  16. <!-- Begin OpenMRS core -->
  17.  
  18. <dependency>
  19. <groupId>org.openmrs.api</groupId>
  20. <artifactId>openmrs-api</artifactId>
  21. <type>jar</type>
  22. </dependency>
  23.  
  24. <dependency>
  25. <groupId>org.openmrs.web</groupId>
  26. <artifactId>openmrs-web</artifactId>
  27. <type>jar</type>
  28. </dependency>
  29.  
  30. <dependency>
  31. <groupId>org.openmrs.api</groupId>
  32. <artifactId>openmrs-api</artifactId>
  33. <type>test-jar</type>
  34. <scope>test</scope>
  35. </dependency>
  36.  
  37. <dependency>
  38. <groupId>org.openmrs.web</groupId>
  39. <artifactId>openmrs-web</artifactId>
  40. <type>test-jar</type>
  41. <scope>test</scope>
  42. </dependency>
  43.  
  44. <dependency>
  45. <groupId>org.openmrs.test</groupId>
  46. <artifactId>openmrs-test</artifactId>
  47. <type>pom</type>
  48. <scope>test</scope>
  49. </dependency>
  50.  
  51. <!-- End OpenMRS core -->
  52.  
  53. <!-- include groovy, but mark as provided since it is included in core OpenMRS -->
  54. <dependency>
  55. <groupId>org.codehaus.groovy</groupId>
  56. <artifactId>groovy</artifactId>
  57. <version>1.7.6</version>
  58. <type>jar</type>
  59. <scope>provided</scope>
  60. </dependency>
  61.  
  62. <dependency>
  63. <groupId>org.openmrs.module</groupId>
  64. <artifactId>uiframework-api</artifactId>
  65. </dependency>
  66.  
  67. </dependencies>
  68.  
  69. <build>
  70. <resources>
  71. <resource>
  72. <directory>src/main/resources</directory>
  73. <filtering>true</filtering>
  74. </resource>
  75. </resources>
  76.  
  77. <testResources>
  78. <testResource>
  79. <directory>src/test/resources</directory>
  80. <filtering>true</filtering>
  81. </testResource>
  82. </testResources>
  83. </build>
  84.  
  85. <!-- profiles for testing against different versions of Openmrs -->
  86. <profiles>
  87. <profile>
  88. <id>openmrs-1.9</id>
  89. <properties>
  90. <openMRSVersion>1.9.0</openMRSVersion>
  91. </properties>
  92. </profile>
  93. <profile>
  94. <id>openmrs-1.10</id>
  95. <properties>
  96. <openMRSVersion>1.10.0-SNAPSHOT</openMRSVersion>
  97. </properties>
  98. </profile>
  99. </profiles>
  100.  
  101.  
  102. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement