Advertisement
Guest User

Untitled

a guest
Jan 15th, 2013
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.45 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>exportccd</artifactId>
  7. <version>1.0</version>
  8. <packaging>pom</packaging>
  9. <name>Export CCD Module</name>
  10. <description>Export the patient summary in CCD Format</description>
  11. <url>https://wiki.openmrs.org/display/docs/Export+CCD+Module+Module</url>
  12.  
  13. <developers>
  14. <developer>
  15. <name>Deepa Ganu</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:svn:https://svn.openmrs.org/openmrs-modules/ExportCCD/trunk/</connection>
  26. <developerConnection>scm:svn:https://svn.openmrs.org/openmrs-modules/ExportCCD/trunk/</developerConnection>
  27. <url>https://svn.openmrs.org/openmrs-modules/ExportCCD/trunk/</url>
  28. </scm>
  29.  
  30. <modules>
  31. <module>api</module>
  32. <module>omod</module>
  33. </modules>
  34.  
  35. <properties>
  36. <openMRSVersion>1.9.0</openMRSVersion>
  37. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  38. </properties>
  39.  
  40. <dependencyManagement>
  41. <dependencies>
  42.  
  43. <!--
  44. Libraries to add as dependencies with compile or runtime scope:
  45. Find matching dependencies in the maven central repository.
  46. <dependency>
  47. <groupId>org.other.library</groupId>
  48. <artifactId>library-name</artifactId>
  49. <version>library.version</version>
  50. <scope>compile</scope>
  51. </dependency>
  52. -->
  53.  
  54.  
  55.  
  56. <!-- Begin OpenMRS core -->
  57.  
  58. <dependency>
  59. <groupId>org.openmrs.api</groupId>
  60. <artifactId>openmrs-api</artifactId>
  61. <version>${openMRSVersion}</version>
  62. <type>jar</type>
  63. <scope>provided</scope>
  64. </dependency>
  65.  
  66. <dependency>
  67. <groupId>org.openmrs.web</groupId>
  68. <artifactId>openmrs-web</artifactId>
  69. <version>${openMRSVersion}</version>
  70. <type>jar</type>
  71. <scope>provided</scope>
  72. </dependency>
  73.  
  74. <dependency>
  75. <groupId>org.openmrs.api</groupId>
  76. <artifactId>openmrs-api</artifactId>
  77. <version>${openMRSVersion}</version>
  78. <type>test-jar</type>
  79. <scope>test</scope>
  80. </dependency>
  81.  
  82. <dependency>
  83. <groupId>org.openmrs.web</groupId>
  84. <artifactId>openmrs-web</artifactId>
  85. <version>${openMRSVersion}</version>
  86. <type>test-jar</type>
  87. <scope>test</scope>
  88. </dependency>
  89.  
  90. <dependency>
  91. <groupId>org.openmrs.test</groupId>
  92. <artifactId>openmrs-test</artifactId>
  93. <version>${openMRSVersion}</version>
  94. <type>pom</type>
  95. <scope>test</scope>
  96. </dependency>
  97.  
  98. <!-- End OpenMRS core -->
  99. <dependency>
  100. <groupId>net.sourceforge.lpg</groupId>
  101. <artifactId>lpgjavaruntime</artifactId>
  102. <version>1.1.0.v200803061910</version>
  103. </dependency>
  104.  
  105. <dependency>
  106. <groupId>org.eclipse.emf.ecore</groupId>
  107. <artifactId>xmi</artifactId>
  108. <version>2.5.0.v200906151043</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.eclipse.emf</groupId>
  112. <artifactId>ecore</artifactId>
  113. <version>2.5.0.v200906151043</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.eclipse.ocl</groupId>
  117. <artifactId>ecore</artifactId>
  118. <version>1.3.0.v200905271400</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.eclipse</groupId>
  122. <artifactId>ocl</artifactId>
  123. <version>1.3.0.v200905271400</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.eclipse.emf</groupId>
  127. <artifactId>common</artifactId>
  128. <version>2.5.0.v200906151043</version>
  129. </dependency>
  130.  
  131.  
  132.  
  133.  
  134. <!-- Changed this to use r1.0 version -->
  135. <dependency>
  136. <groupId>org.openhealthtools.mdht.uml.cda.ccd</groupId>
  137. <artifactId>source</artifactId>
  138. <version>1.0.0.201109121753</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.openhealthtools.mdht.uml.cda</groupId>
  142. <artifactId>ccd</artifactId>
  143. <version>1.0.0.201109121753</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.openhealthtools.mdht.uml.cda.cdt</groupId>
  147. <artifactId>source</artifactId>
  148. <version>1.0.0.201109121753</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>org.openhealthtools.mdht.uml.cda</groupId>
  152. <artifactId>cdt</artifactId>
  153. <version>1.0.0.201109121753</version>
  154. </dependency>
  155.  
  156. <dependency>
  157. <groupId>org.openhealthtools.mdht.uml.cda</groupId>
  158. <artifactId>hitsp</artifactId>
  159. <version>1.0.0.201109121753</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.openhealthtools.mdht.uml.cda.ihe</groupId>
  163. <artifactId>source</artifactId>
  164. <version>1.0.0.201109121753</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.openhealthtools.mdht.uml.cda</groupId>
  168. <artifactId>ihe</artifactId>
  169. <version>1.0.0.201109121753</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>org.openhealthtools.mdht.uml.cda.toc.domain</groupId>
  173. <artifactId>source</artifactId>
  174. <version>1.0.0.201109121753</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.openhealthtools.mdht.uml.cda.toc</groupId>
  178. <artifactId>domain</artifactId>
  179. <version>1.0.0.201109121753</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>org.openhealthtools.mdht.uml.cda.toc</groupId>
  183. <artifactId>source</artifactId>
  184. <version>1.0.0.201109121753</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.openhealthtools.mdht.uml.cda</groupId>
  188. <artifactId>toc</artifactId>
  189. <version>1.0.0.201109121753</version>
  190. </dependency>
  191.  
  192. <dependency>
  193. <groupId>org.openhealthtools.mdht.uml</groupId>
  194. <artifactId>cda</artifactId>
  195. <version>1.0.0.201109121753</version>
  196. </dependency>
  197. <dependency>
  198. <groupId>org.openhealthtools.mdht.uml.hl7</groupId>
  199. <artifactId>datatypes</artifactId>
  200. <version>1.0.0.201109121753</version>
  201. </dependency>
  202. <dependency>
  203. <groupId>org.openhealthtools.mdht.uml.hl7</groupId>
  204. <artifactId>rim</artifactId>
  205. <version>1.0.0.201109121753</version>
  206. </dependency>
  207. <dependency>
  208. <groupId>org.openhealthtools.mdht.uml.hl7</groupId>
  209. <artifactId>vocab</artifactId>
  210. <version>1.0.0.201109121753</version>
  211. </dependency>
  212.  
  213.  
  214.  
  215.  
  216.  
  217.  
  218.  
  219.  
  220.  
  221.  
  222.  
  223.  
  224.  
  225.  
  226.  
  227. </dependencies>
  228. </dependencyManagement>
  229.  
  230. <build>
  231. <pluginManagement>
  232. <plugins>
  233. <plugin>
  234. <groupId>org.apache.maven.plugins</groupId>
  235. <artifactId>maven-compiler-plugin</artifactId>
  236. <configuration>
  237. <target>1.6</target>
  238. <source>1.6</source>
  239. </configuration>
  240. </plugin>
  241. <plugin>
  242. <groupId>org.openmrs.maven.plugins</groupId>
  243. <artifactId>maven-openmrs-plugin</artifactId>
  244. <version>1.0.1</version>
  245. </plugin>
  246. <plugin>
  247. <groupId>org.apache.maven.plugins</groupId>
  248. <artifactId>maven-dependency-plugin</artifactId>
  249. <version>2.4</version>
  250. </plugin>
  251. </plugins>
  252. </pluginManagement>
  253. </build>
  254.  
  255. <repositories>
  256. <repository>
  257. <id>openmrs-repo</id>
  258. <name>OpenMRS Nexus Repository</name>
  259. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/public</url>
  260. </repository>
  261. </repositories>
  262.  
  263. <pluginRepositories>
  264. <pluginRepository>
  265. <id>openmrs-repo</id>
  266. <name>OpenMRS Nexus Repository</name>
  267. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/public</url>
  268. <snapshots>
  269. <enabled>false</enabled>
  270. </snapshots>
  271. </pluginRepository>
  272. </pluginRepositories>
  273.  
  274. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement