pom.xml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License. See accompanying LICENSE file.
  12. -->
  13. <project xmlns="http://maven.apache.org/POM/4.0.0"
  14. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  15. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  16. <modelVersion>4.0.0</modelVersion>
  17. <parent>
  18. <groupId>org.apache.hadoop</groupId>
  19. <artifactId>hadoop-ozone</artifactId>
  20. <version>0.4.0-SNAPSHOT</version>
  21. </parent>
  22. <artifactId>hadoop-ozone-s3gateway</artifactId>
  23. <name>Apache Hadoop Ozone S3 Gateway</name>
  24. <packaging>jar</packaging>
  25. <version>0.4.0-SNAPSHOT</version>
  26. <properties>
  27. <file.encoding>UTF-8</file.encoding>
  28. <downloadSources>true</downloadSources>
  29. </properties>
  30. <build>
  31. <plugins>
  32. </plugins>
  33. </build>
  34. <dependencies>
  35. <dependency>
  36. <groupId>javax.xml.bind</groupId>
  37. <artifactId>jaxb-api</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.hadoop</groupId>
  41. <artifactId>hadoop-ozone-common</artifactId>
  42. <scope>compile</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.jboss.weld.servlet</groupId>
  46. <artifactId>weld-servlet</artifactId>
  47. <version>2.4.7.Final</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.glassfish.jersey.containers</groupId>
  51. <artifactId>jersey-container-servlet-core</artifactId>
  52. <version>2.27</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.glassfish.jersey.ext.cdi</groupId>
  56. <artifactId>jersey-cdi1x</artifactId>
  57. <version>2.27</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.glassfish.jersey.inject</groupId>
  61. <artifactId>jersey-hk2</artifactId>
  62. <version>2.27</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.fasterxml.jackson.dataformat</groupId>
  66. <artifactId>jackson-dataformat-xml</artifactId>
  67. <version>2.9.0</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>javax.enterprise</groupId>
  71. <artifactId>cdi-api</artifactId>
  72. <version>1.2</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.hadoop</groupId>
  76. <artifactId>hadoop-common</artifactId>
  77. <exclusions>
  78. <exclusion>
  79. <groupId>com.sun.jersey</groupId>
  80. <artifactId>jersey-core</artifactId>
  81. </exclusion>
  82. <exclusion>
  83. <groupId>com.sun.jersey</groupId>
  84. <artifactId>jersey-servlet</artifactId>
  85. </exclusion>
  86. <exclusion>
  87. <groupId>com.sun.jersey</groupId>
  88. <artifactId>jersey-json</artifactId>
  89. </exclusion>
  90. <exclusion>
  91. <groupId>com.sun.jersey</groupId>
  92. <artifactId>jersey-server</artifactId>
  93. </exclusion>
  94. </exclusions>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.apache.hadoop</groupId>
  98. <artifactId>hadoop-hdfs</artifactId>
  99. <exclusions>
  100. <exclusion>
  101. <groupId>com.sun.jersey</groupId>
  102. <artifactId>jersey-core</artifactId>
  103. </exclusion>
  104. <exclusion>
  105. <groupId>com.sun.jersey</groupId>
  106. <artifactId>jersey-servlet</artifactId>
  107. </exclusion>
  108. <exclusion>
  109. <groupId>com.sun.jersey</groupId>
  110. <artifactId>jersey-json</artifactId>
  111. </exclusion>
  112. <exclusion>
  113. <groupId>com.sun.jersey</groupId>
  114. <artifactId>jersey-server</artifactId>
  115. </exclusion>
  116. </exclusions>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.apache.hadoop</groupId>
  120. <artifactId>hadoop-common</artifactId>
  121. <type>test-jar</type>
  122. <scope>test</scope>
  123. <exclusions>
  124. <exclusion>
  125. <groupId>com.sun.jersey</groupId>
  126. <artifactId>jersey-core</artifactId>
  127. </exclusion>
  128. <exclusion>
  129. <groupId>com.sun.jersey</groupId>
  130. <artifactId>jersey-servlet</artifactId>
  131. </exclusion>
  132. <exclusion>
  133. <groupId>com.sun.jersey</groupId>
  134. <artifactId>jersey-json</artifactId>
  135. </exclusion>
  136. <exclusion>
  137. <groupId>com.sun.jersey</groupId>
  138. <artifactId>jersey-server</artifactId>
  139. </exclusion>
  140. </exclusions>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.apache.hadoop</groupId>
  144. <artifactId>hadoop-hdfs</artifactId>
  145. <type>test-jar</type>
  146. <scope>test</scope>
  147. <exclusions>
  148. <exclusion>
  149. <groupId>com.sun.jersey</groupId>
  150. <artifactId>jersey-core</artifactId>
  151. </exclusion>
  152. <exclusion>
  153. <groupId>com.sun.jersey</groupId>
  154. <artifactId>jersey-servlet</artifactId>
  155. </exclusion>
  156. <exclusion>
  157. <groupId>com.sun.jersey</groupId>
  158. <artifactId>jersey-json</artifactId>
  159. </exclusion>
  160. <exclusion>
  161. <groupId>com.sun.jersey</groupId>
  162. <artifactId>jersey-server</artifactId>
  163. </exclusion>
  164. </exclusions>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.apache.hadoop</groupId>
  168. <artifactId>hadoop-ozone-client</artifactId>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.mockito</groupId>
  172. <artifactId>mockito-core</artifactId>
  173. <version>2.15.0</version>
  174. <scope>test</scope>
  175. </dependency>
  176. <dependency>
  177. <groupId>com.google.code.findbugs</groupId>
  178. <artifactId>findbugs</artifactId>
  179. <version>3.0.1</version>
  180. <scope>provided</scope>
  181. </dependency>
  182. </dependencies>
  183. </project>