pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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 Gatway</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>org.apache.hadoop</groupId>
  37. <artifactId>hadoop-ozone-common</artifactId>
  38. <scope>compile</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.jboss.weld.servlet</groupId>
  42. <artifactId>weld-servlet</artifactId>
  43. <version>2.4.7.Final</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.glassfish.jersey.containers</groupId>
  47. <artifactId>jersey-container-servlet-core</artifactId>
  48. <version>2.27</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.glassfish.jersey.ext.cdi</groupId>
  52. <artifactId>jersey-cdi1x</artifactId>
  53. <version>2.27</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.glassfish.jersey.inject</groupId>
  57. <artifactId>jersey-hk2</artifactId>
  58. <version>2.27</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.fasterxml.jackson.dataformat</groupId>
  62. <artifactId>jackson-dataformat-xml</artifactId>
  63. <version>2.9.0</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>javax.enterprise</groupId>
  67. <artifactId>cdi-api</artifactId>
  68. <version>1.2</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.apache.hadoop</groupId>
  72. <artifactId>hadoop-common</artifactId>
  73. <exclusions>
  74. <exclusion>
  75. <groupId>com.sun.jersey</groupId>
  76. <artifactId>jersey-core</artifactId>
  77. </exclusion>
  78. <exclusion>
  79. <groupId>com.sun.jersey</groupId>
  80. <artifactId>jersey-servlet</artifactId>
  81. </exclusion>
  82. <exclusion>
  83. <groupId>com.sun.jersey</groupId>
  84. <artifactId>jersey-json</artifactId>
  85. </exclusion>
  86. <exclusion>
  87. <groupId>com.sun.jersey</groupId>
  88. <artifactId>jersey-server</artifactId>
  89. </exclusion>
  90. </exclusions>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.apache.hadoop</groupId>
  94. <artifactId>hadoop-hdfs</artifactId>
  95. <exclusions>
  96. <exclusion>
  97. <groupId>com.sun.jersey</groupId>
  98. <artifactId>jersey-core</artifactId>
  99. </exclusion>
  100. <exclusion>
  101. <groupId>com.sun.jersey</groupId>
  102. <artifactId>jersey-servlet</artifactId>
  103. </exclusion>
  104. <exclusion>
  105. <groupId>com.sun.jersey</groupId>
  106. <artifactId>jersey-json</artifactId>
  107. </exclusion>
  108. <exclusion>
  109. <groupId>com.sun.jersey</groupId>
  110. <artifactId>jersey-server</artifactId>
  111. </exclusion>
  112. </exclusions>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.apache.hadoop</groupId>
  116. <artifactId>hadoop-common</artifactId>
  117. <type>test-jar</type>
  118. <scope>test</scope>
  119. <exclusions>
  120. <exclusion>
  121. <groupId>com.sun.jersey</groupId>
  122. <artifactId>jersey-core</artifactId>
  123. </exclusion>
  124. <exclusion>
  125. <groupId>com.sun.jersey</groupId>
  126. <artifactId>jersey-servlet</artifactId>
  127. </exclusion>
  128. <exclusion>
  129. <groupId>com.sun.jersey</groupId>
  130. <artifactId>jersey-json</artifactId>
  131. </exclusion>
  132. <exclusion>
  133. <groupId>com.sun.jersey</groupId>
  134. <artifactId>jersey-server</artifactId>
  135. </exclusion>
  136. </exclusions>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.apache.hadoop</groupId>
  140. <artifactId>hadoop-hdfs</artifactId>
  141. <type>test-jar</type>
  142. <scope>test</scope>
  143. <exclusions>
  144. <exclusion>
  145. <groupId>com.sun.jersey</groupId>
  146. <artifactId>jersey-core</artifactId>
  147. </exclusion>
  148. <exclusion>
  149. <groupId>com.sun.jersey</groupId>
  150. <artifactId>jersey-servlet</artifactId>
  151. </exclusion>
  152. <exclusion>
  153. <groupId>com.sun.jersey</groupId>
  154. <artifactId>jersey-json</artifactId>
  155. </exclusion>
  156. <exclusion>
  157. <groupId>com.sun.jersey</groupId>
  158. <artifactId>jersey-server</artifactId>
  159. </exclusion>
  160. </exclusions>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.apache.hadoop</groupId>
  164. <artifactId>hadoop-ozone-client</artifactId>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.mockito</groupId>
  168. <artifactId>mockito-core</artifactId>
  169. <version>2.15.0</version>
  170. <scope>test</scope>
  171. </dependency>
  172. </dependencies>
  173. </project>