Advertisement
Guest User

Untitled

a guest
Mar 4th, 2013
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.50 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. <parent>
  5. <groupId>org.openmrs.module</groupId>
  6. <artifactId>report</artifactId>
  7. <version>0.2.3-SNAPSHOT</version>
  8. </parent>
  9. <groupId>org.openmrs.module</groupId>
  10. <artifactId>report-omod</artifactId>
  11. <packaging>omod</packaging>
  12. <name>report module OMOD</name>
  13. <description>OpenMRS module project for report</description>
  14.  
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.openmrs.module</groupId>
  18. <artifactId>report-api</artifactId>
  19. <version>${project.parent.version}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.openmrs.api</groupId>
  23. <artifactId>openmrs-api</artifactId>
  24. <type>jar</type>
  25. <scope>provided</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.openmrs.web</groupId>
  29. <artifactId>openmrs-web</artifactId>
  30. <type>jar</type>
  31. <scope>provided</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.openmrs.test</groupId>
  35. <artifactId>openmrs-test</artifactId>
  36. <type>pom</type>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.ibm.icu</groupId>
  40. <artifactId>icu4j</artifactId>
  41. <version>4.2.1</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.eclipse.birt.core</groupId>
  45. <artifactId>coreapi</artifactId>
  46. <version>1.5.0</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.eclipse.birt.report.engine</groupId>
  50. <artifactId>engineapi</artifactId>
  51. <version>1.5.0</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.eclipse.birt</groupId>
  55. <artifactId>modelapi</artifactId>
  56. <version>1.5.0</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.eclipse.birt.report.viewservlet</groupId>
  60. <artifactId>viewservlets</artifactId>
  61. <version>1.5.0</version>
  62. </dependency>
  63.  
  64. </dependencies>
  65.  
  66. <build>
  67. <resources>
  68. <resource>
  69. <directory>src/main/resources</directory>
  70. <filtering>true</filtering>
  71. </resource>
  72. <resource>
  73. <directory>src/main/webapp</directory>
  74. <filtering>true</filtering>
  75. <excludes>
  76. <exclude>resources</exclude>
  77. </excludes>
  78. <targetPath>web/module</targetPath>
  79. </resource>
  80. <resource>
  81. <directory>src/main/webapp</directory>
  82. <includes>
  83. <include>resources</include>
  84. </includes>
  85. <targetPath>web/module</targetPath>
  86. </resource>
  87. </resources>
  88. <testResources>
  89. <testResource>
  90. <directory>src/test/resources</directory>
  91. <filtering>true</filtering>
  92. </testResource>
  93. </testResources>
  94. <pluginManagement>
  95. <plugins>
  96. <plugin>
  97. <artifactId>maven-resources-plugin</artifactId>
  98. <configuration>
  99. <includeEmptyDirs>true</includeEmptyDirs>
  100. </configuration>
  101. </plugin>
  102. </plugins>
  103. </pluginManagement>
  104. <plugins>
  105. <plugin>
  106. <groupId>org.motech.openmrs.plugin</groupId>
  107. <artifactId>maven-openmrs-plugin</artifactId>
  108. <extensions>true</extensions>
  109. <configuration>
  110. <verifyOmod>false</verifyOmod>
  111. </configuration>
  112. </plugin>
  113. </plugins>
  114. </build>
  115.  
  116. <properties>
  117. <MODULE_ID>${project.parent.artifactId}</MODULE_ID>
  118. <MODULE_NAME>${project.parent.name}</MODULE_NAME>
  119. <MODULE_VERSION>${project.parent.version}</MODULE_VERSION>
  120. <MODULE_PACKAGE>${project.parent.groupId}.${project.parent.artifactId}</MODULE_PACKAGE>
  121. </properties>
  122.  
  123. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement