Advertisement
Guest User

Untitled

a guest
Apr 19th, 2020
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.79 KB | None | 0 0
  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.  
  5. <groupId>org.openmrs.module</groupId>
  6. <artifactId>providermanagement</artifactId>
  7. <version>2.11.0-SNAPSHOT</version>
  8. <packaging>pom</packaging>
  9. <name>Provider Management Module</name>
  10. <description>Allows for the creation of provider roles, as well as the management of provider/provider and provider/patient relationships.</description>
  11. <url>https://wiki.openmrs.org/display/docs/Provider+Management+Module+Module</url>
  12.  
  13. <developers>
  14. <developer>
  15. <name>Mark Goodrich</name>
  16. </developer>
  17. </developers>
  18.  
  19. <organization>
  20. <name>OpenMRS</name>
  21. <url>http://openmrs.org</url>
  22. </organization>
  23.  
  24. <scm>
  25. <connection>scm:git:git@github.com:openmrs/openmrs-module-providermanagement.git</connection>
  26. <developerConnection>scm:git:git@github.com:openmrs/openmrs-module-providermanagement.git</developerConnection>
  27. <url>https://github.com/openmrs/openmrs-module-providermanagement</url>
  28. <tag>HEAD</tag>
  29. </scm>
  30.  
  31. <distributionManagement>
  32. <repository>
  33. <id>openmrs-repo-modules</id>
  34. <name>Modules</name>
  35. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/modules/</url>
  36. </repository>
  37. <snapshotRepository>
  38. <id>openmrs-repo-snapshots</id>
  39. <name>OpenMRS Snapshots</name>
  40. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/snapshots</url>
  41. </snapshotRepository>
  42. </distributionManagement>
  43.  
  44.  
  45. <modules>
  46. <module>api</module>
  47. <module>api-2.0</module>
  48. <module>omod</module>
  49. </modules>
  50.  
  51. <properties>
  52. <openMRSVersion>1.9.9</openMRSVersion>
  53. <uiframeworkVersion>3.4</uiframeworkVersion>
  54. <uilibraryVersion>1.5</uilibraryVersion>
  55. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  56. </properties>
  57.  
  58. <dependencyManagement>
  59. <dependencies>
  60.  
  61. <!--
  62. Libraries to add as dependencies with compile or runtime scope:
  63. Find matching dependencies in the maven central repository.
  64. <dependency>
  65. <groupId>org.other.library</groupId>
  66. <artifactId>library-name</artifactId>
  67. <version>library.version</version>
  68. <scope>compile</scope>
  69. </dependency>
  70. -->
  71.  
  72.  
  73.  
  74. <!-- Begin OpenMRS core -->
  75.  
  76. <dependency>
  77. <groupId>org.openmrs.api</groupId>
  78. <artifactId>openmrs-api</artifactId>
  79. <version>${openMRSVersion}</version>
  80. <type>jar</type>
  81. <scope>provided</scope>
  82. </dependency>
  83.  
  84. <dependency>
  85. <groupId>org.openmrs.web</groupId>
  86. <artifactId>openmrs-web</artifactId>
  87. <version>${openMRSVersion}</version>
  88. <type>jar</type>
  89. <scope>provided</scope>
  90. </dependency>
  91.  
  92. <dependency>
  93. <groupId>org.openmrs.api</groupId>
  94. <artifactId>openmrs-api</artifactId>
  95. <version>${openMRSVersion}</version>
  96. <type>test-jar</type>
  97. <scope>test</scope>
  98. </dependency>
  99.  
  100. <dependency>
  101. <groupId>org.openmrs.web</groupId>
  102. <artifactId>openmrs-web</artifactId>
  103. <version>${openMRSVersion}</version>
  104. <type>test-jar</type>
  105. <scope>test</scope>
  106. </dependency>
  107.  
  108. <dependency>
  109. <groupId>org.openmrs.test</groupId>
  110. <artifactId>openmrs-test</artifactId>
  111. <version>${openMRSVersion}</version>
  112. <type>pom</type>
  113. <scope>test</scope>
  114. </dependency>
  115.  
  116. <!-- End OpenMRS core -->
  117.  
  118. <!-- depends on ui framework module -->
  119. <dependency>
  120. <groupId>org.openmrs.module</groupId>
  121. <artifactId>uiframework-api</artifactId>
  122. <version>${uiframeworkVersion}</version>
  123. <type>jar</type>
  124. <scope>provided</scope>
  125. </dependency>
  126.  
  127. </dependencies>
  128. </dependencyManagement>
  129.  
  130. <build>
  131. <pluginManagement>
  132. <plugins>
  133. <plugin>
  134. <groupId>org.apache.maven.plugins</groupId>
  135. <artifactId>maven-compiler-plugin</artifactId>
  136. <configuration>
  137. <target>1.6</target>
  138. <source>1.6</source>
  139. </configuration>
  140. </plugin>
  141. <plugin>
  142. <groupId>org.openmrs.maven.plugins</groupId>
  143. <artifactId>maven-openmrs-plugin</artifactId>
  144. <version>1.0.1</version>
  145. </plugin>
  146. <plugin>
  147. <groupId>org.apache.maven.plugins</groupId>
  148. <artifactId>maven-dependency-plugin</artifactId>
  149. <version>2.4</version>
  150. </plugin>
  151. <plugin>
  152. <groupId>org.apache.maven.plugins</groupId>
  153. <artifactId>maven-surefire-plugin</artifactId>
  154. <version>2.22.1</version>
  155. <configuration>
  156. <argLine>-Djdk.net.URLClassPath.disableClassPathURLCheck=true</argLine>
  157. </configuration>
  158. </plugin>
  159. <plugin>
  160. <groupId>org.apache.maven.plugins</groupId>
  161. <artifactId>maven-release-plugin</artifactId>
  162. <version>2.5</version>
  163. <configuration>
  164. <tagNameFormat>@{project.version}</tagNameFormat>
  165. </configuration>
  166. </plugin>
  167. </plugins>
  168. </pluginManagement>
  169. </build>
  170.  
  171. <repositories>
  172. <repository>
  173. <id>openmrs-repo</id>
  174. <name>OpenMRS Nexus Repository</name>
  175. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/public</url>
  176. </repository>
  177. </repositories>
  178.  
  179. <pluginRepositories>
  180. <pluginRepository>
  181. <id>openmrs-repo</id>
  182. <name>OpenMRS Nexus Repository</name>
  183. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/public</url>
  184. <snapshots>
  185. <enabled>false</enabled>
  186. </snapshots>
  187. </pluginRepository>
  188. </pluginRepositories>
  189.  
  190. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement