Advertisement
Guest User

api pom

a guest
Aug 20th, 2013
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.55 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>integration</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10.  
  11. <artifactId>integration-api</artifactId>
  12. <packaging>jar</packaging>
  13. <name>Integration Module API</name>
  14. <description>API project for Integration</description>
  15.  
  16. <dependencies>
  17.  
  18. <!--
  19. Add other dependencies from parent's pom:
  20. <dependency>
  21. <groupId>org.other.library</groupId>
  22. <artifactId>library-name</artifactId>
  23. </dependency>
  24. -->
  25.  
  26.  
  27.  
  28. <!-- Begin OpenMRS modules -->
  29.  
  30. <dependency>
  31. <groupId>org.openmrs.module</groupId>
  32. <artifactId>reporting-api</artifactId>
  33. </dependency>
  34.  
  35. <!-- End OpenMRS modules -->
  36.  
  37.  
  38. <!-- Begin OpenMRS core -->
  39.  
  40. <dependency>
  41. <groupId>org.openmrs.api</groupId>
  42. <artifactId>openmrs-api</artifactId>
  43. <type>jar</type>
  44. </dependency>
  45.  
  46. <dependency>
  47. <groupId>org.openmrs.web</groupId>
  48. <artifactId>openmrs-web</artifactId>
  49. <type>jar</type>
  50. </dependency>
  51.  
  52. <dependency>
  53. <groupId>org.openmrs.api</groupId>
  54. <artifactId>openmrs-api</artifactId>
  55. <type>test-jar</type>
  56. <scope>test</scope>
  57. </dependency>
  58.  
  59. <dependency>
  60. <groupId>org.openmrs.web</groupId>
  61. <artifactId>openmrs-web</artifactId>
  62. <type>test-jar</type>
  63. <scope>test</scope>
  64. </dependency>
  65.  
  66. <dependency>
  67. <groupId>org.openmrs.test</groupId>
  68. <artifactId>openmrs-test</artifactId>
  69. <type>pom</type>
  70. <scope>test</scope>
  71. </dependency>
  72.  
  73. <!-- End OpenMRS core -->
  74.  
  75. <dependency>
  76. <groupId>com.sun.xml.bind</groupId>
  77. <artifactId>jaxb-impl</artifactId>
  78. <version>2.2.6</version>
  79. </dependency>
  80.  
  81. <dependency>
  82. <groupId>org.jvnet.jaxb2.maven2</groupId>
  83. <artifactId>maven-jaxb2-plugin</artifactId>
  84. <version>0.8.3</version>
  85. </dependency>
  86.  
  87. <dependency>
  88. <groupId>org.jvnet.jaxb2_commons</groupId>
  89. <artifactId>jaxb2-basics-runtime</artifactId>
  90. <version>0.6.4</version>
  91. </dependency>
  92.  
  93. <dependency>
  94. <groupId>org.springframework.ws</groupId>
  95. <artifactId>spring-ws-core</artifactId>
  96. <version>2.0.3.RELEASE</version>
  97. </dependency>
  98.  
  99. <dependency>
  100. <groupId>org.springframework</groupId>
  101. <artifactId>spring-web</artifactId>
  102. <version>3.0.5.RELEASE</version>
  103. <type>jar</type>
  104. <scope>compile</scope>
  105. </dependency>
  106.  
  107. <dependency>
  108. <groupId>commons-io</groupId>
  109. <artifactId>commons-io</artifactId>
  110. <version>1.3.2</version>
  111. </dependency>
  112.  
  113. <dependency>
  114. <groupId>org.apache.httpcomponents</groupId>
  115. <artifactId>httpcore</artifactId>
  116. <version>4.2</version>
  117. <type>jar</type>
  118. </dependency>
  119.  
  120. <dependency>
  121. <groupId>org.apache.httpcomponents</groupId>
  122. <artifactId>httpclient</artifactId>
  123. <version>4.2</version>
  124. <type>jar</type>
  125. <exclusions>
  126. <exclusion>
  127. <artifactId>commons-logging</artifactId>
  128. <groupId>commons-logging</groupId>
  129. </exclusion>
  130. </exclusions>
  131. </dependency>
  132.  
  133. </dependencies>
  134.  
  135. <build>
  136. <resources>
  137. <resource>
  138. <directory>src/main/resources</directory>
  139. <filtering>true</filtering>
  140. </resource>
  141. </resources>
  142.  
  143. <testResources>
  144. <testResource>
  145. <directory>src/test/resources</directory>
  146. <filtering>true</filtering>
  147. </testResource>
  148. </testResources>
  149. <plugins>
  150.  
  151. <plugin>
  152. <groupId>org.jvnet.jaxb2.maven2</groupId>
  153. <artifactId>maven-jaxb2-plugin</artifactId>
  154. <version>0.8.3</version>
  155. <executions>
  156. <execution>
  157. <goals>
  158. <goal>generate</goal>
  159. </goals>
  160. <phase>validate</phase>
  161. <configuration>
  162. <args>
  163. <arg>-XtoString</arg>
  164. <arg>-Xequals</arg>
  165. <arg>-XhashCode</arg>
  166. <arg>-Xcopyable</arg>
  167. </args>
  168. <plugins>
  169. <plugin>
  170. <groupId>org.jvnet.jaxb2_commons</groupId>
  171. <artifactId>jaxb2-basics</artifactId>
  172. <version>0.6.4</version>
  173. </plugin>
  174. </plugins>
  175. <schemaIncludes>
  176. <include>metaData.xsd</include>
  177. <include>MasterTemplate.xsd</include>
  178. </schemaIncludes>
  179. <generatePackage>org.openmrs.module.integration.api.jaxb</generatePackage>
  180. </configuration>
  181.  
  182. </execution>
  183. </executions>
  184. </plugin>
  185.  
  186. </plugins>
  187.  
  188. </build>
  189.  
  190. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement