pom.xml 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  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 https://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. <include>**/Test*.java</include>
  69. <include>**/*Test.java</include>
  70. <include>**/*Tests.java</include>
  71. <include>**/*TestCase.java</include>
  72. </includes>
  73. </configuration>
  74. </plugin>
  75. <plugin>
  76. <groupId>org.codehaus.mojo</groupId>
  77. <artifactId>animal-sniffer-maven-plugin</artifactId>
  78. <executions>
  79. <execution>
  80. <id>signature-check</id>
  81. <phase></phase>
  82. </execution>
  83. </executions>
  84. </plugin>
  85. </plugins>
  86. </build>
  87. <dependencies>
  88. <dependency>
  89. <groupId>org.apache.hadoop</groupId>
  90. <artifactId>hadoop-common</artifactId>
  91. <scope>compile</scope>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.apache.hadoop</groupId>
  95. <artifactId>hadoop-hdfs</artifactId>
  96. <scope>compile</scope>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.apache.hadoop</groupId>
  100. <artifactId>hadoop-hdds-common</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.apache.hadoop</groupId>
  104. <artifactId>hadoop-hdds-server-scm</artifactId>
  105. <scope>test</scope>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.apache.hadoop</groupId>
  109. <artifactId>hadoop-hdds-server-framework</artifactId>
  110. <scope>test</scope>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.apache.hadoop</groupId>
  114. <artifactId>hadoop-ozone-ozone-manager</artifactId>
  115. <scope>test</scope>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.apache.hadoop</groupId>
  119. <artifactId>hadoop-hdds-container-service</artifactId>
  120. <scope>test</scope>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.apache.hadoop</groupId>
  124. <artifactId>hadoop-hdds-client</artifactId>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.apache.hadoop</groupId>
  128. <artifactId>hadoop-ozone-common</artifactId>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.apache.hadoop</groupId>
  132. <artifactId>hadoop-ozone-objectstore-service</artifactId>
  133. <scope>provided</scope>
  134. </dependency>
  135. <dependency>
  136. <groupId>com.google.code.findbugs</groupId>
  137. <artifactId>findbugs</artifactId>
  138. <version>3.0.1</version>
  139. <scope>provided</scope>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.apache.hadoop</groupId>
  143. <artifactId>hadoop-common</artifactId>
  144. <scope>test</scope>
  145. <type>test-jar</type>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.apache.hadoop</groupId>
  149. <artifactId>hadoop-ozone-client</artifactId>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.apache.hadoop</groupId>
  153. <artifactId>hadoop-hdfs</artifactId>
  154. <scope>test</scope>
  155. <type>test-jar</type>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.apache.hadoop</groupId>
  159. <artifactId>hadoop-ozone-integration-test</artifactId>
  160. <scope>test</scope>
  161. <type>test-jar</type>
  162. </dependency>
  163. <dependency>
  164. <groupId>org.mockito</groupId>
  165. <artifactId>mockito-all</artifactId>
  166. <version>1.10.19</version>
  167. <scope>test</scope>
  168. </dependency>
  169. <dependency>
  170. <groupId>junit</groupId>
  171. <artifactId>junit</artifactId>
  172. <scope>test</scope>
  173. </dependency>
  174. <dependency>
  175. <groupId>org.apache.hadoop</groupId>
  176. <artifactId>hadoop-distcp</artifactId>
  177. <scope>test</scope>
  178. </dependency>
  179. <dependency>
  180. <groupId>org.apache.hadoop</groupId>
  181. <artifactId>hadoop-distcp</artifactId>
  182. <scope>test</scope>
  183. <type>test-jar</type>
  184. </dependency>
  185. <dependency>
  186. <groupId>org.apache.hadoop</groupId>
  187. <artifactId>hadoop-mapreduce-client-jobclient</artifactId>
  188. <scope>test</scope>
  189. </dependency>
  190. <dependency>
  191. <groupId>org.powermock</groupId>
  192. <artifactId>powermock-module-junit4</artifactId>
  193. <version>1.6.5</version>
  194. <scope>test</scope>
  195. <exclusions>
  196. <exclusion>
  197. <groupId>org.javassist</groupId>
  198. <artifactId>javassist</artifactId>
  199. </exclusion>
  200. </exclusions>
  201. </dependency>
  202. <dependency>
  203. <groupId>org.powermock</groupId>
  204. <artifactId>powermock-api-mockito</artifactId>
  205. <version>1.6.5</version>
  206. <scope>test</scope>
  207. <exclusions>
  208. <exclusion>
  209. <groupId>org.hamcrest</groupId>
  210. <artifactId>hamcrest-core</artifactId>
  211. </exclusion>
  212. </exclusions>
  213. </dependency>
  214. </dependencies>
  215. </project>