Advertisement
Guest User

Untitled

a guest
Oct 18th, 2013
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.09 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>openmrs-restclient-dcm4che</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <packaging>pom</packaging>
  9. <name>openmrs-module-restclient-dcm4che Module</name>
  10. <description>It connects OpenMRS Server and dcm4che</description>
  11. <url>https://wiki.openmrs.org/display/docs/openmrs-module-restclient-dcm4che+Module+Module</url>
  12.  
  13. <developers>
  14. <developer>
  15. <name>Shangeetha</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/openmrs-restclient-dcm4che/trunk/</connection>
  26. <developerConnection>scm:svn:https://svn.openmrs.org/openmrs-modules/openmrs-restclient-dcm4che/trunk/</developerConnection>
  27. <url>https://svn.openmrs.org/openmrs-modules/openmrs-restclient-dcm4che/trunk/</url>
  28. </scm>
  29.  
  30. <modules>
  31. <module>api</module>
  32. <module>omod</module>
  33. </modules>
  34.  
  35. <properties>
  36. <openMRSVersion>1.9</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.  
  100. </dependencies>
  101. </dependencyManagement>
  102.  
  103. <build>
  104. <pluginManagement>
  105. <plugins>
  106. <plugin>
  107. <groupId>org.apache.maven.plugins</groupId>
  108. <artifactId>maven-compiler-plugin</artifactId>
  109. <configuration>
  110. <target>1.6</target>
  111. <source>1.6</source>
  112. </configuration>
  113. </plugin>
  114. <plugin>
  115. <groupId>org.openmrs.maven.plugins</groupId>
  116. <artifactId>maven-openmrs-plugin</artifactId>
  117. <version>1.0.1</version>
  118. </plugin>
  119. <plugin>
  120. <groupId>org.apache.maven.plugins</groupId>
  121. <artifactId>maven-dependency-plugin</artifactId>
  122. <version>2.4</version>
  123. </plugin>
  124. </plugins>
  125. </pluginManagement>
  126. </build>
  127.  
  128. <repositories>
  129. <repository>
  130. <id>openmrs-repo</id>
  131. <name>OpenMRS Nexus Repository</name>
  132. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/public</url>
  133. </repository>
  134. </repositories>
  135.  
  136. <pluginRepositories>
  137. <pluginRepository>
  138. <id>openmrs-repo</id>
  139. <name>OpenMRS Nexus Repository</name>
  140. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/public</url>
  141. <snapshots>
  142. <enabled>false</enabled>
  143. </snapshots>
  144. </pluginRepository>
  145. </pluginRepositories>
  146.  
  147. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement