Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2014
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.93 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. 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. <parent>
  6. <groupId>org.openmrs.module</groupId>
  7. <artifactId>dms</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <groupId>org.openmrs.module</groupId>
  11. <artifactId>dms-omod</artifactId>
  12. <packaging>omod</packaging>
  13. <name>Dms module OMOD</name>
  14. <description>OpenMRS module project for Dms</description>
  15.  
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.openmrs.module</groupId>
  19. <artifactId>dms-api</artifactId>
  20. <version>${project.parent.version}</version>
  21. </dependency>
  22.  
  23. <dependency>
  24. <groupId>org.openmrs.api</groupId>
  25. <artifactId>openmrs-api</artifactId>
  26. <type>jar</type>
  27. <scope>provided</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.openmrs.web</groupId>
  31. <artifactId>openmrs-web</artifactId>
  32. <type>jar</type>
  33. <scope>provided</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.openmrs.test</groupId>
  37. <artifactId>openmrs-test</artifactId>
  38. <type>pom</type>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.openmrs.module</groupId>
  42. <artifactId>hospitalcore-api</artifactId>
  43. <version>1.5.0</version>
  44. <scope>provided</scope>
  45. </dependency>
  46. </dependencies>
  47.  
  48. <build>
  49. <resources>
  50. <resource>
  51. <directory>src/main/resources</directory>
  52. <filtering>true</filtering>
  53. </resource>
  54. <resource>
  55. <directory>src/main/webapp</directory>
  56. <filtering>true</filtering>
  57. <excludes>
  58. <exclude>resources</exclude>
  59. </excludes>
  60. <targetPath>web/module</targetPath>
  61. </resource>
  62. <resource>
  63. <directory>src/main/webapp</directory>
  64. <includes>
  65. <include>resources</include>
  66. </includes>
  67. <targetPath>web/module</targetPath>
  68. </resource>
  69. </resources>
  70. <testResources>
  71. <testResource>
  72. <directory>src/test/resources</directory>
  73. <filtering>true</filtering>
  74. </testResource>
  75. </testResources>
  76. <pluginManagement>
  77. <plugins>
  78. <plugin>
  79. <artifactId>maven-resources-plugin</artifactId>
  80. <configuration>
  81. <includeEmptyDirs>true</includeEmptyDirs>
  82. </configuration>
  83. </plugin>
  84. </plugins>
  85. </pluginManagement>
  86. <plugins>
  87. <plugin>
  88. <groupId>org.openmrs.maven.plugins</groupId>
  89. <artifactId>maven-openmrs-plugin</artifactId>
  90. <version>1.0.1</version>
  91. <extensions>true</extensions>
  92. <configuration>
  93. <verifyOmod>false</verifyOmod>
  94. </configuration>
  95. </plugin>
  96. </plugins>
  97. </build>
  98.  
  99. <properties>
  100. <MODULE_ID>${project.parent.artifactId}</MODULE_ID>
  101. <MODULE_NAME>${project.parent.name}</MODULE_NAME>
  102. <MODULE_VERSION>${project.parent.version}</MODULE_VERSION>
  103. <MODULE_PACKAGE>${project.parent.groupId}.${project.parent.artifactId}</MODULE_PACKAGE>
  104. </properties>
  105.  
  106. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement