Advertisement
Guest User

Untitled

a guest
Jan 15th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.75 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. <groupId>org.openmrs.module</groupId>
  5. <artifactId>metadatadeploy</artifactId>
  6. <version>1.9.0</version>
  7.  
  8. <packaging>pom</packaging>
  9. <name>Metadata Deploy</name>
  10. <description>Metadata deployment support</description>
  11.  
  12. <developers>
  13. <developer>
  14. <name>I-TECH</name>
  15. </developer>
  16. <developer>
  17. <name>OpenMRS</name>
  18. </developer>
  19. <developer>
  20. <name>PIH</name>
  21. </developer>
  22. </developers>
  23.  
  24. <organization>
  25. <name>I-TECH</name>
  26. <url>http://www.go2itech.org</url>
  27. </organization>
  28.  
  29. <scm>
  30. <connection>scm:git:git@github.com:openmrs/openmrs-module-metadatadeploy.git</connection>
  31. <developerConnection>scm:git:git@github.com:openmrs/openmrs-module-metadatadeploy.git</developerConnection>
  32. <url>scm:git:https://github.com/openmrs/openmrs-module-metadatadeploy</url>
  33. <tag>1.9.0</tag>
  34. </scm>
  35.  
  36. <modules>
  37. <module>api</module>
  38. <module>api-1.10</module>
  39. <module>omod</module>
  40. </modules>
  41.  
  42. <properties>
  43. <openMRSVersion>1.10.2</openMRSVersion>
  44. <openMRSBuildVersion>1.10.2</openMRSBuildVersion>
  45.  
  46. <!-- Module dependencies -->
  47. <metadatasharingVersion>1.1.8</metadatasharingVersion>
  48. <serializationxstreamVersion>0.2.7</serializationxstreamVersion>
  49.  
  50. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  51. </properties>
  52.  
  53. <dependencyManagement>
  54. <dependencies>
  55.  
  56. <!-- Begin OpenMRS modules -->
  57.  
  58. <dependency>
  59. <groupId>org.openmrs.module</groupId>
  60. <artifactId>metadatasharing-api</artifactId>
  61. <version>${metadatasharingVersion}</version>
  62. <scope>provided</scope>
  63. </dependency>
  64.  
  65. <dependency>
  66. <groupId>org.openmrs.module</groupId>
  67. <artifactId>serialization.xstream-api</artifactId>
  68. <version>${serializationxstreamVersion}</version>
  69. <scope>provided</scope>
  70. </dependency>
  71.  
  72. <!-- End OpenMRS modules -->
  73.  
  74. <!-- Begin OpenMRS core -->
  75.  
  76. <dependency>
  77. <groupId>org.openmrs.api</groupId>
  78. <artifactId>openmrs-api</artifactId>
  79. <version>${openMRSBuildVersion}</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>${openMRSBuildVersion}</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>${openMRSBuildVersion}</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>${openMRSBuildVersion}</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>${openMRSBuildVersion}</version>
  112. <type>pom</type>
  113. <scope>test</scope>
  114. </dependency>
  115.  
  116. <!-- End OpenMRS core -->
  117.  
  118. <!-- Begin external libraries -->
  119.  
  120. <dependency>
  121. <groupId>org.hamcrest</groupId>
  122. <artifactId>hamcrest-all</artifactId>
  123. <version>1.3</version>
  124. </dependency>
  125.  
  126. <dependency>
  127. <groupId>net.sf.opencsv</groupId>
  128. <artifactId>opencsv</artifactId>
  129. <version>2.3</version>
  130. </dependency>
  131.  
  132. <!-- End external libraries -->
  133.  
  134. </dependencies>
  135. </dependencyManagement>
  136.  
  137. <build>
  138. <pluginManagement>
  139. <plugins>
  140. <plugin>
  141. <groupId>org.apache.maven.plugins</groupId>
  142. <artifactId>maven-compiler-plugin</artifactId>
  143. <configuration>
  144. <target>1.6</target>
  145. <source>1.6</source>
  146. </configuration>
  147. </plugin>
  148. <plugin>
  149. <groupId>org.apache.maven.plugins</groupId>
  150. <artifactId>maven-javadoc-plugin</artifactId>
  151. <version>2.10.1</version>
  152. <configuration>
  153. <failOnError>false</failOnError>
  154. </configuration>
  155. </plugin>
  156. <plugin>
  157. <groupId>org.openmrs.maven.plugins</groupId>
  158. <artifactId>maven-openmrs-plugin</artifactId>
  159. <version>1.0.1</version>
  160. </plugin>
  161. <plugin>
  162. <groupId>org.apache.maven.plugins</groupId>
  163. <artifactId>maven-dependency-plugin</artifactId>
  164. <version>2.4</version>
  165. </plugin>
  166. <plugin>
  167. <groupId>org.apache.maven.plugins</groupId>
  168. <artifactId>maven-release-plugin</artifactId>
  169. <version>2.5.1</version>
  170. <configuration>
  171. <autoVersionSubmodules>true</autoVersionSubmodules>
  172. <tagNameFormat>@{project.version}</tagNameFormat>
  173. </configuration>
  174. </plugin>
  175. </plugins>
  176. </pluginManagement>
  177. </build>
  178.  
  179. <repositories>
  180. <repository>
  181. <id>openmrs-repo</id>
  182. <name>OpenMRS Nexus Repository</name>
  183. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/public</url>
  184. </repository>
  185. </repositories>
  186.  
  187. <pluginRepositories>
  188. <pluginRepository>
  189. <id>openmrs-repo</id>
  190. <name>OpenMRS Nexus Repository</name>
  191. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/public</url>
  192. <snapshots>
  193. <enabled>false</enabled>
  194. </snapshots>
  195. </pluginRepository>
  196. </pluginRepositories>
  197.  
  198. <distributionManagement>
  199. <repository>
  200. <id>openmrs-repo-modules</id>
  201. <name>Modules</name>
  202. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/modules/</url>
  203. </repository>
  204. <snapshotRepository>
  205. <id>openmrs-repo-snapshots</id>
  206. <name>OpenMRS Snapshots</name>
  207. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/snapshots</url>
  208. </snapshotRepository>
  209. </distributionManagement>
  210.  
  211. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement