Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2014
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.02 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.  
  4. <modelVersion>4.0.0</modelVersion>
  5.  
  6. <groupId>org.openmrs.module</groupId>
  7. <artifactId>hospitalcore</artifactId>
  8. <version>1.5.0</version>
  9. <packaging>pom</packaging>
  10. <name>Hospital core module</name>
  11. <description>Hospital core module</description>
  12.  
  13. <url>http://openmrs.org</url>
  14.  
  15. <scm>
  16. <connection>scm:git:git://github.com/vietnguyen/his-hospitalcore.git/</connection>
  17. <developerConnection>scm:git:git://github.com/vietnguyen/his-hospitalcore.git/</developerConnection>
  18. <url>scm:git:git://github.com/vietnguyen/his-hospitalcore.git/</url>
  19. </scm>
  20.  
  21. <distributionManagement>
  22. <!-- use the following if you're not using a snapshot version. -->
  23. <repository>
  24. <id>shimla-nexus</id>
  25. <name>Shimla nexus repo</name>
  26. <url>http://hospdev.hispindia.org/nexus/content/repositories/releases/</url>
  27. </repository>
  28. <!-- use the following if you ARE using a snapshot version. -->
  29. <snapshotRepository>
  30. <id>shimla-nexus</id>
  31. <name>Shimla nexus repo</name>
  32. <url>http://hospdev.hispindia.org/nexus/content/repositories/snapshots/</url>
  33. <uniqueVersion>false</uniqueVersion>
  34. </snapshotRepository>
  35. </distributionManagement>
  36.  
  37. <modules>
  38. <module>api</module>
  39. <module>omod</module>
  40. </modules>
  41.  
  42. <properties>
  43. <openMRSVersion>1.9.3</openMRSVersion>
  44. </properties>
  45.  
  46. <dependencyManagement>
  47. <dependencies>
  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. <dependency>
  56. <groupId>org.openmrs.api</groupId>
  57. <artifactId>openmrs-api</artifactId>
  58. <version>${openMRSVersion}</version>
  59. <type>test-jar</type>
  60. <scope>test</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.openmrs.web</groupId>
  64. <artifactId>openmrs-web</artifactId>
  65. <version>${openMRSVersion}</version>
  66. <type>jar</type>
  67. <scope>provided</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.openmrs.test</groupId>
  71. <artifactId>openmrs-test</artifactId>
  72. <version>${openMRSVersion}</version>
  73. <type>pom</type>
  74. <scope>test</scope>
  75. </dependency>
  76. </dependencies>
  77. </dependencyManagement>
  78.  
  79. <build>
  80. <pluginManagement>
  81. <plugins>
  82. <plugin>
  83. <groupId>org.apache.maven.plugins</groupId>
  84. <artifactId>maven-compiler-plugin</artifactId>
  85. <configuration>
  86. <target>1.5</target>
  87. <source>1.5</source>
  88. </configuration>
  89. </plugin>
  90. <plugin>
  91. <groupId>org.openmrs.maven.plugins</groupId>
  92. <artifactId>maven-openmrs-plugin</artifactId>
  93. <version>1.0.1</version>
  94. </plugin>
  95. <plugin>
  96. <groupId>org.codehaus.mojo</groupId>
  97. <artifactId>findbugs-maven-plugin</artifactId>
  98. <version>2.0.1</version>
  99. <configuration>
  100. <findbugsXmlOutput>true</findbugsXmlOutput>
  101. <findbugsXmlWithMessages>true</findbugsXmlWithMessages>
  102. <xmlOutput>true</xmlOutput>
  103. <!-- <excludeFilterFile>${rootDir}findbugs-exclude.xml</excludeFilterFile> -->
  104. </configuration>
  105. </plugin>
  106. </plugins>
  107. </pluginManagement>
  108. </build>
  109.  
  110. <repositories>
  111. <repository>
  112. <id>openmrs-repo</id>
  113. <name>OpenMRS Nexus Repository</name>
  114. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/public</url>
  115. </repository>
  116. </repositories>
  117.  
  118. <pluginRepositories>
  119. <pluginRepository>
  120. <id>openmrs-repo</id>
  121. <name>OpenMRS Nexus Repository</name>
  122. <url>http://mavenrepo.openmrs.org/nexus/content/repositories/public</url>
  123. <snapshots>
  124. <enabled>false</enabled>
  125. </snapshots>
  126. </pluginRepository>
  127. </pluginRepositories>
  128.  
  129. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement