Advertisement
Apurv

pom.xml

May 16th, 2012
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.98 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>hospitalcore</artifactId>
  7. <version>1.4.10.6</version>
  8. <packaging>pom</packaging>
  9. <name>Hospital core module</name>
  10. <description>Hospital core module</description>
  11.  
  12. <url>http://openmrs.org</url>
  13.  
  14. <scm>
  15. <connection>scm:git:git://github.com/vietnguyen/his-hospitalcore.git/</connection>
  16. <developerConnection>scm:git:git://github.com/vietnguyen/his-hospitalcore.git/</developerConnection>
  17. <url>scm:git:git://github.com/vietnguyen/his-hospitalcore.git/</url>
  18. </scm>
  19.  
  20. <modules>
  21. <module>api</module>
  22. <module>omod</module>
  23. </modules>
  24.  
  25. <properties>
  26. <openMRSVersion>1.8.0</openMRSVersion>
  27. </properties>
  28.  
  29. <dependencyManagement>
  30. <dependencies>
  31. <dependency>
  32. <groupId>org.openmrs.api</groupId>
  33. <artifactId>openmrs-api</artifactId>
  34. <version>${openMRSVersion}</version>
  35. <type>jar</type>
  36. <scope>provided</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.openmrs.api</groupId>
  40. <artifactId>openmrs-api</artifactId>
  41. <version>${openMRSVersion}</version>
  42. <type>test-jar</type>
  43. <scope>test</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.openmrs.web</groupId>
  47. <artifactId>openmrs-web</artifactId>
  48. <version>${openMRSVersion}</version>
  49. <type>jar</type>
  50. <scope>provided</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.openmrs.test</groupId>
  54. <artifactId>openmrs-test</artifactId>
  55. <version>${openMRSVersion}</version>
  56. <type>pom</type>
  57. <scope>test</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.openmrs.module</groupId>
  61. <artifactId>webservices.rest-omod</artifactId>
  62. <scope>provided</scope>
  63. </dependency>
  64. </dependencies>
  65. </dependencyManagement>
  66.  
  67. <build>
  68. <pluginManagement>
  69. <plugins>
  70. <plugin>
  71. <groupId>org.apache.maven.plugins</groupId>
  72. <artifactId>maven-compiler-plugin</artifactId>
  73. <configuration>
  74. <target>1.5</target>
  75. <source>1.5</source>
  76. </configuration>
  77. </plugin>
  78. <plugin>
  79. <groupId>org.openmrs.maven.plugins</groupId>
  80. <artifactId>maven-openmrs-plugin</artifactId>
  81. <version>1.0.1</version>
  82. </plugin>
  83. <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
  84. <plugin>
  85. <groupId>org.eclipse.m2e</groupId>
  86. <artifactId>lifecycle-mapping</artifactId>
  87. <version>1.0.0</version>
  88. <configuration>
  89. <lifecycleMappingMetadata>
  90. <pluginExecutions>
  91. <pluginExecution>
  92. <pluginExecutionFilter>
  93. <groupId>
  94. org.motech.openmrs.plugin
  95. </groupId>
  96. <artifactId>
  97. maven-openmrs-plugin
  98. </artifactId>
  99. <versionRange>
  100. [1.0-RC4,)
  101. </versionRange>
  102. <goals>
  103. <goal>
  104. initialize-module
  105. </goal>
  106. </goals>
  107. </pluginExecutionFilter>
  108. <action>
  109. <ignore></ignore>
  110. </action>
  111. </pluginExecution>
  112. </pluginExecutions>
  113. </lifecycleMappingMetadata>
  114. </configuration>
  115. </plugin>
  116. </plugins>
  117. </pluginManagement>
  118. </build>
  119.  
  120. <repositories>
  121. <repository>
  122. <id>openmrs-repo</id>
  123. <name>OpenMRS Nexus Repository</name>
  124. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/public</url>
  125. </repository>
  126. </repositories>
  127.  
  128. <pluginRepositories>
  129. <pluginRepository>
  130. <id>openmrs-repo</id>
  131. <name>OpenMRS Nexus Repository</name>
  132. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/public</url>
  133. <snapshots>
  134. <enabled>false</enabled>
  135. </snapshots>
  136. </pluginRepository>
  137. </pluginRepositories>
  138.  
  139. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement