Guest User

Untitled

a guest
Jan 7th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.59 KB | None | 0 0
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3.  
  4. <parent>
  5. <groupId>org.openmrs.module</groupId>
  6. <artifactId>metadatadeploy</artifactId>
  7. <version>1.9.0</version>
  8. </parent>
  9.  
  10. <artifactId>metadatadeploy-api</artifactId>
  11. <packaging>jar</packaging>
  12. <name>Metadata Deploy API</name>
  13. <description>API project for metadatadeploy</description>
  14. <properties>
  15. <openMRSBuildVersion>1.10.2</openMRSBuildVersion>
  16. </properties>
  17.  
  18.  
  19. <dependencies>
  20.  
  21. <!-- Begin OpenMRS modules -->
  22.  
  23. <dependency>
  24. <groupId>org.openmrs.module</groupId>
  25. <artifactId>metadatasharing-api</artifactId>
  26. </dependency>
  27.  
  28. <dependency>
  29. <groupId>org.openmrs.module</groupId>
  30. <artifactId>serialization.xstream-api</artifactId>
  31. </dependency>
  32.  
  33. <!-- End OpenMRS modules -->
  34.  
  35. <!-- Begin OpenMRS core -->
  36.  
  37. <dependency>
  38. <groupId>org.openmrs.api</groupId>
  39. <artifactId>openmrs-api</artifactId>
  40. </dependency>
  41.  
  42. <dependency>
  43. <groupId>org.openmrs.web</groupId>
  44. <artifactId>openmrs-web</artifactId>
  45. </dependency>
  46.  
  47. <dependency>
  48. <groupId>org.openmrs.api</groupId>
  49. <artifactId>openmrs-api</artifactId>
  50. <type>test-jar</type>
  51. <scope>test</scope>
  52. </dependency>
  53.  
  54. <dependency>
  55. <groupId>org.openmrs.web</groupId>
  56. <artifactId>openmrs-web</artifactId>
  57. <type>test-jar</type>
  58. <scope>test</scope>
  59. </dependency>
  60.  
  61. <dependency>
  62. <groupId>org.openmrs.test</groupId>
  63. <artifactId>openmrs-test</artifactId>
  64. <type>pom</type>
  65. <scope>test</scope>
  66. </dependency>
  67.  
  68. <!-- End OpenMRS core -->
  69.  
  70. <!-- Begin external libraries -->
  71.  
  72. <dependency>
  73. <groupId>net.sf.opencsv</groupId>
  74. <artifactId>opencsv</artifactId>
  75. </dependency>
  76.  
  77. <!-- End external libraries -->
  78.  
  79. </dependencies>
  80.  
  81. <build>
  82. <resources>
  83. <resource>
  84. <directory>src/main/resources</directory>
  85. <includes>
  86. <include>**/*.properties</include>
  87. <include>**/*.xml</include>
  88. </includes>
  89. <filtering>true</filtering>
  90. </resource>
  91. <resource>
  92. <directory>src/main/resources</directory>
  93. <excludes>
  94. <exclude>**/*.properties</exclude>
  95. <exclude>**/*.xml</exclude>
  96. </excludes>
  97. <filtering>false</filtering>
  98. </resource>
  99. </resources>
  100.  
  101. <testResources>
  102. <testResource>
  103. <directory>src/test/resources</directory>
  104. <filtering>false</filtering>
  105. </testResource>
  106. </testResources>
  107. </build>
  108.  
  109. </project>
Advertisement
Add Comment
Please, Sign In to add comment