Guest User

Untitled

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