pom.xml 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  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
  16. http://maven.apache.org/xsd/maven-4.0.0.xsd">
  17. <modelVersion>4.0.0</modelVersion>
  18. <parent>
  19. <groupId>org.apache.hadoop</groupId>
  20. <artifactId>hadoop-project-dist</artifactId>
  21. <version>3.2.0-SNAPSHOT</version>
  22. <relativePath>../hadoop-project-dist</relativePath>
  23. </parent>
  24. <artifactId>hadoop-ozone</artifactId>
  25. <version>0.2.1-SNAPSHOT</version>
  26. <description>Apache Hadoop Ozone Project</description>
  27. <name>Apache Hadoop Ozone</name>
  28. <packaging>pom</packaging>
  29. <modules>
  30. <module>common</module>
  31. <module>client</module>
  32. <module>ozone-manager</module>
  33. <module>tools</module>
  34. <module>ozonefs</module>
  35. <module>integration-test</module>
  36. <module>objectstore-service</module>
  37. <module>docs</module>
  38. </modules>
  39. <dependencies>
  40. <dependency>
  41. <groupId>org.apache.hadoop</groupId>
  42. <artifactId>hadoop-common</artifactId>
  43. <scope>provided</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.hadoop</groupId>
  47. <artifactId>hadoop-hdfs</artifactId>
  48. <scope>provided</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.hadoop</groupId>
  52. <artifactId>hadoop-hdfs-client</artifactId>
  53. <scope>provided</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.hadoop</groupId>
  57. <artifactId>hadoop-hdds-common</artifactId>
  58. <scope>provided</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.apache.hadoop</groupId>
  62. <artifactId>hadoop-hdds-server-framework</artifactId>
  63. <scope>provided</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.hadoop</groupId>
  67. <artifactId>hadoop-hdds-server-scm</artifactId>
  68. <scope>provided</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.apache.hadoop</groupId>
  72. <artifactId>hadoop-hdds-container-service</artifactId>
  73. <scope>provided</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.hadoop</groupId>
  77. <artifactId>hadoop-hdds-client</artifactId>
  78. <scope>provided</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.apache.hadoop</groupId>
  82. <artifactId>hadoop-hdds-tools</artifactId>
  83. <scope>provided</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.apache.hadoop</groupId>
  87. <artifactId>hadoop-common</artifactId>
  88. <scope>test</scope>
  89. <type>test-jar</type>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.apache.hadoop</groupId>
  93. <artifactId>hadoop-hdfs</artifactId>
  94. <scope>test</scope>
  95. <type>test-jar</type>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.apache.hadoop</groupId>
  99. <artifactId>hadoop-hdds-server-scm</artifactId>
  100. <scope>test</scope>
  101. <type>test-jar</type>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.apache.hadoop</groupId>
  105. <artifactId>hadoop-hdds-container-service</artifactId>
  106. <scope>test</scope>
  107. <type>test-jar</type>
  108. </dependency>
  109. <dependency>
  110. <groupId>junit</groupId>
  111. <artifactId>junit</artifactId>
  112. <scope>test</scope>
  113. </dependency>
  114. </dependencies>
  115. <build>
  116. <plugins>
  117. <plugin>
  118. <groupId>org.apache.rat</groupId>
  119. <artifactId>apache-rat-plugin</artifactId>
  120. <configuration>
  121. <excludes>
  122. <exclude>**/target/**</exclude>
  123. <exclude>acceptance-test/hadoop-ozone-acceptance-test.iml</exclude>
  124. <exclude>.gitattributes</exclude>
  125. <exclude>.idea/**</exclude>
  126. <exclude>dev-support/checkstyle*</exclude>
  127. <exclude>dev-support/jdiff/**</exclude>
  128. <exclude>dev-support/*tests</exclude>
  129. <exclude>src/test/empty-file</exclude>
  130. <exclude>src/test/all-tests</exclude>
  131. <exclude>src/test/resources/*.tgz</exclude>
  132. <exclude>src/test/resources/data*</exclude>
  133. <exclude>**/*.json</exclude>
  134. <exclude>src/test/resources/empty-file</exclude>
  135. <exclude>src/main/webapps/datanode/robots.txt</exclude>
  136. <exclude>src/main/webapps/hdfs/robots.txt</exclude>
  137. <exclude>src/main/webapps/journal/robots.txt</exclude>
  138. <exclude>src/main/webapps/secondary/robots.txt</exclude>
  139. <exclude>src/main/webapps/router/robots.txt</exclude>
  140. <exclude>src/contrib/**</exclude>
  141. <exclude>src/site/resources/images/*</exclude>
  142. <exclude>webapps/static/bootstrap-3.3.7/**</exclude>
  143. <exclude>webapps/static/jquery-3.3.1.min.js</exclude>
  144. <exclude>webapps/static/jquery.dataTables.min.js</exclude>
  145. <exclude>webapps/static/nvd3-1.8.5.min.css.map</exclude>
  146. <exclude>webapps/static/nvd3-1.8.5.min.js</exclude>
  147. <exclude>webapps/static/angular-route-1.6.4.min.js
  148. </exclude>
  149. <exclude>webapps/static/nvd3-1.8.5.min.css</exclude>
  150. <exclude>webapps/static/angular-nvd3-1.0.9.min.js</exclude>
  151. <exclude>webapps/static/nvd3-1.8.5.min.js.map</exclude>
  152. <exclude>webapps/static/angular-1.6.4.min.js</exclude>
  153. <exclude>webapps/static/d3-3.5.17.min.js</exclude>
  154. <exclude>static/OzoneOverview.svg</exclude>
  155. <exclude>themes/ozonedoc/static/js/jquery.min.js</exclude>
  156. <exclude>themes/ozonedoc/static/js/bootstrap.min.js</exclude>
  157. <exclude>themes/ozonedoc/static/css/bootstrap.min.css</exclude>
  158. <exclude>themes/ozonedoc/static/css/bootstrap.min.css.map</exclude>
  159. <exclude>themes/ozonedoc/static/css/bootstrap-theme.min.css</exclude>
  160. <exclude>themes/ozonedoc/static/css/bootstrap-theme.min.css.map</exclude>
  161. <exclude>themes/ozonedoc/static/fonts/glyphicons-halflings-regular.svg</exclude>
  162. <exclude>themes/ozonedoc/layouts/index.html</exclude>
  163. <exclude>themes/ozonedoc/theme.toml</exclude>
  164. </excludes>
  165. </configuration>
  166. </plugin>
  167. <plugin>
  168. <groupId>org.codehaus.mojo</groupId>
  169. <artifactId>findbugs-maven-plugin</artifactId>
  170. <configuration>
  171. <excludeFilterFile combine.self="override"></excludeFilterFile>
  172. </configuration>
  173. </plugin>
  174. </plugins>
  175. </build>
  176. </project>