Advertisement
Guest User

Untitled

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