pom.xml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  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.5.0-SNAPSHOT</version>
  21. </parent>
  22. <artifactId>hadoop-ozone-filesystem</artifactId>
  23. <name>Apache Hadoop Ozone FileSystem</name>
  24. <packaging>jar</packaging>
  25. <version>0.5.0-SNAPSHOT</version>
  26. <properties>
  27. <file.encoding>UTF-8</file.encoding>
  28. <downloadSources>true</downloadSources>
  29. </properties>
  30. <build>
  31. <plugins>
  32. <plugin>
  33. <groupId>org.apache.maven.plugins</groupId>
  34. <artifactId>maven-jar-plugin</artifactId>
  35. <executions>
  36. <execution>
  37. <goals>
  38. <goal>test-jar</goal>
  39. </goals>
  40. </execution>
  41. </executions>
  42. </plugin>
  43. <plugin>
  44. <groupId>org.apache.maven.plugins</groupId>
  45. <artifactId>maven-dependency-plugin</artifactId>
  46. <executions>
  47. <execution>
  48. <id>deplist</id>
  49. <phase>compile</phase>
  50. <goals>
  51. <goal>list</goal>
  52. </goals>
  53. <configuration>
  54. <!-- build a shellprofile -->
  55. <outputFile>
  56. ${project.basedir}/target/1hadoop-tools-deps/${project.artifactId}.tools-optional.txt
  57. </outputFile>
  58. </configuration>
  59. </execution>
  60. </executions>
  61. </plugin>
  62. <plugin>
  63. <groupId>org.apache.maven.plugins</groupId>
  64. <artifactId>maven-surefire-plugin</artifactId>
  65. <configuration>
  66. <includes>
  67. <include>ITestOzoneContract*.java</include>
  68. </includes>
  69. </configuration>
  70. </plugin>
  71. <plugin>
  72. <groupId>org.codehaus.mojo</groupId>
  73. <artifactId>animal-sniffer-maven-plugin</artifactId>
  74. <executions>
  75. <execution>
  76. <id>signature-check</id>
  77. <phase></phase>
  78. </execution>
  79. </executions>
  80. </plugin>
  81. </plugins>
  82. </build>
  83. <dependencies>
  84. <dependency>
  85. <groupId>org.apache.hadoop</groupId>
  86. <artifactId>hadoop-common</artifactId>
  87. <scope>compile</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.apache.hadoop</groupId>
  91. <artifactId>hadoop-hdfs</artifactId>
  92. <scope>compile</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.apache.hadoop</groupId>
  96. <artifactId>hadoop-hdds-common</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.apache.hadoop</groupId>
  100. <artifactId>hadoop-hdds-server-scm</artifactId>
  101. <scope>test</scope>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.apache.hadoop</groupId>
  105. <artifactId>hadoop-hdds-server-framework</artifactId>
  106. <scope>test</scope>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.apache.hadoop</groupId>
  110. <artifactId>hadoop-ozone-ozone-manager</artifactId>
  111. <scope>test</scope>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.apache.hadoop</groupId>
  115. <artifactId>hadoop-hdds-container-service</artifactId>
  116. <scope>test</scope>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.apache.hadoop</groupId>
  120. <artifactId>hadoop-hdds-client</artifactId>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.apache.hadoop</groupId>
  124. <artifactId>hadoop-ozone-common</artifactId>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.apache.hadoop</groupId>
  128. <artifactId>hadoop-ozone-objectstore-service</artifactId>
  129. <scope>provided</scope>
  130. </dependency>
  131. <dependency>
  132. <groupId>com.google.code.findbugs</groupId>
  133. <artifactId>findbugs</artifactId>
  134. <version>3.0.1</version>
  135. <scope>provided</scope>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.apache.hadoop</groupId>
  139. <artifactId>hadoop-common</artifactId>
  140. <scope>test</scope>
  141. <type>test-jar</type>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.apache.hadoop</groupId>
  145. <artifactId>hadoop-ozone-client</artifactId>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.apache.hadoop</groupId>
  149. <artifactId>hadoop-hdfs</artifactId>
  150. <scope>test</scope>
  151. <type>test-jar</type>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.apache.hadoop</groupId>
  155. <artifactId>hadoop-ozone-integration-test</artifactId>
  156. <scope>test</scope>
  157. <type>test-jar</type>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.mockito</groupId>
  161. <artifactId>mockito-all</artifactId>
  162. <version>1.10.19</version>
  163. <scope>test</scope>
  164. </dependency>
  165. <dependency>
  166. <groupId>junit</groupId>
  167. <artifactId>junit</artifactId>
  168. <scope>test</scope>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.apache.hadoop</groupId>
  172. <artifactId>hadoop-distcp</artifactId>
  173. <scope>test</scope>
  174. </dependency>
  175. <dependency>
  176. <groupId>org.apache.hadoop</groupId>
  177. <artifactId>hadoop-distcp</artifactId>
  178. <scope>test</scope>
  179. <type>test-jar</type>
  180. </dependency>
  181. <dependency>
  182. <groupId>org.apache.hadoop</groupId>
  183. <artifactId>hadoop-mapreduce-client-jobclient</artifactId>
  184. <scope>test</scope>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.powermock</groupId>
  188. <artifactId>powermock-module-junit4</artifactId>
  189. <version>1.6.5</version>
  190. <scope>test</scope>
  191. <exclusions>
  192. <exclusion>
  193. <groupId>org.javassist</groupId>
  194. <artifactId>javassist</artifactId>
  195. </exclusion>
  196. </exclusions>
  197. </dependency>
  198. <dependency>
  199. <groupId>org.powermock</groupId>
  200. <artifactId>powermock-api-mockito</artifactId>
  201. <version>1.6.5</version>
  202. <scope>test</scope>
  203. <exclusions>
  204. <exclusion>
  205. <groupId>org.hamcrest</groupId>
  206. <artifactId>hamcrest-core</artifactId>
  207. </exclusion>
  208. </exclusions>
  209. </dependency>
  210. </dependencies>
  211. </project>