Advertisement
Guest User

Untitled

a guest
Dec 6th, 2011
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.15 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>JSSLab</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <packaging>pom</packaging>
  9. <name>JSSLab Module</name>
  10. <description>Specimen-based lab module for JSS</description>
  11.  
  12. <url>http://openmrs.org</url>
  13.  
  14. <scm>
  15. <connection>scm:svn:http://svn.openmrs.org/openmrs-modules/JSSLab/trunk/</connection>
  16. <developerConnection>scm:svn:http://svn.openmrs.org/openmrs-modules/JSSLab/trunk/</developerConnection>
  17. <url>http://svn.openmrs.org/openmrs-modules/JSSLab/trunk/</url>
  18. </scm>
  19.  
  20.  
  21. <modules>
  22. <module>api</module>
  23. <module>omod</module>
  24. </modules>
  25.  
  26.  
  27.  
  28. <dependencyManagement>
  29. <dependencies>
  30. <!--
  31. Libraries from lib to add as dependencies with compile or runtime scope:
  32. Find matching dependencies in maven central repository.
  33. <dependency>
  34. <groupId>org.other.library</groupId>
  35. <artifactId>library-name</artifactId>
  36. <version>library.version</version>
  37. <scope>compile</scope>
  38. </dependency>
  39. -->
  40.  
  41. <dependency>
  42. <groupId>org.openmrs.module</groupId>
  43. <artifactId>webservices.rest-api</artifactId> <version>0.9-SNAPSHOT</version>
  44. <scope>provided</scope>
  45. </dependency>
  46.  
  47.  
  48. <dependency>
  49. <groupId>org.openmrs.api</groupId>
  50. <artifactId>openmrs-api</artifactId>
  51. <version>${openMRSVersion}</version>
  52. <type>jar</type>
  53. <scope>provided</scope>
  54. </dependency>
  55.  
  56. <dependency>
  57. <groupId>org.openmrs.web</groupId>
  58. <artifactId>openmrs-web</artifactId>
  59. <version>${openMRSVersion}</version>
  60. <type>jar</type>
  61. <scope>provided</scope>
  62. </dependency>
  63.  
  64.  
  65. <dependency>
  66. <groupId>org.openmrs.api</groupId>
  67. <artifactId>openmrs-api</artifactId>
  68. <version>${openMRSVersion}</version>
  69. <type>test-jar</type>
  70. <scope>test</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.openmrs.web</groupId>
  74. <artifactId>openmrs-web</artifactId>
  75. <version>${openMRSVersion}</version>
  76. <type>test-jar</type>
  77. <scope>test</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.openmrs.test</groupId>
  81. <artifactId>openmrs-test</artifactId>
  82. <version>${openMRSVersion}</version>
  83. <type>pom</type>
  84. <scope>test</scope>
  85. </dependency>
  86.  
  87.  
  88.  
  89. <dependency>
  90. <groupId>org.openmrs.module</groupId>
  91. <artifactId>logic</artifactId>
  92. <version>0.5</version>
  93. <type>jar</type>
  94. <scope>provided</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.openmrs.module</groupId>
  98. <artifactId>webservices.rest</artifactId>
  99. <version>0.9-SNAPSHOT</version>
  100. <scope>provided</scope>
  101. </dependency>
  102. </dependencies>
  103. </dependencyManagement>
  104.  
  105.  
  106.  
  107. <properties>
  108. <openMRSVersion>1.8.0-alpha</openMRSVersion>
  109. </properties>
  110.  
  111. <build>
  112. <pluginManagement>
  113. <plugins>
  114. <plugin>
  115. <groupId>org.apache.maven.plugins</groupId>
  116. <artifactId>maven-compiler-plugin</artifactId>
  117. <configuration>
  118. <target>1.5</target>
  119. <source>1.5</source>
  120. </configuration>
  121. </plugin>
  122. <plugin>
  123. <groupId>org.openmrs.maven.plugins</groupId>
  124. <artifactId>maven-openmrs-plugin</artifactId>
  125. <version>1.0.1</version>
  126. </plugin>
  127. </plugins>
  128. </pluginManagement>
  129. </build>
  130.  
  131. <repositories>
  132. <repository>
  133. <id>openmrs-repo</id>
  134. <name>OpenMRS Nexus Repository</name>
  135. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/public</url>
  136. </repository>
  137. </repositories>
  138.  
  139. <pluginRepositories>
  140. <pluginRepository>
  141. <id>openmrs-repo</id>
  142. <name>OpenMRS Nexus Repository</name>
  143. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/public</url>
  144. <snapshots>
  145. <enabled>false</enabled>
  146. </snapshots>
  147. </pluginRepository>
  148. </pluginRepositories>
  149.  
  150. </project>
  151.  
  152.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement