pom.xml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. <?xml version="1.0"?>
  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</artifactId>
  21. <version>2.6.5</version>
  22. <relativePath>../../hadoop-project</relativePath>
  23. </parent>
  24. <groupId>org.apache.hadoop</groupId>
  25. <artifactId>hadoop-mapreduce-client</artifactId>
  26. <version>2.6.5</version>
  27. <name>hadoop-mapreduce-client</name>
  28. <packaging>pom</packaging>
  29. <properties>
  30. <hadoop.common.build.dir>${basedir}/../../../hadoop-common-project/hadoop-common/target</hadoop.common.build.dir>
  31. </properties>
  32. <dependencies>
  33. <dependency>
  34. <groupId>com.google.protobuf</groupId>
  35. <artifactId>protobuf-java</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.apache.avro</groupId>
  39. <artifactId>avro</artifactId>
  40. <exclusions>
  41. <exclusion>
  42. <groupId>org.mortbay.jetty</groupId>
  43. <artifactId>jetty</artifactId>
  44. </exclusion>
  45. <exclusion>
  46. <groupId>org.apache.ant</groupId>
  47. <artifactId>ant</artifactId>
  48. </exclusion>
  49. <exclusion>
  50. <groupId>org.jboss.netty</groupId>
  51. <artifactId>netty</artifactId>
  52. </exclusion>
  53. <exclusion>
  54. <groupId>org.apache.velocity</groupId>
  55. <artifactId>velocity</artifactId>
  56. </exclusion>
  57. <exclusion>
  58. <groupId>org.slf4j</groupId>
  59. <artifactId>slf4j-api</artifactId>
  60. </exclusion>
  61. <exclusion>
  62. <artifactId>paranamer-ant</artifactId>
  63. <groupId>com.thoughtworks.paranamer</groupId>
  64. </exclusion>
  65. </exclusions>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.apache.hadoop</groupId>
  69. <artifactId>hadoop-common</artifactId>
  70. <scope>provided</scope>
  71. <exclusions>
  72. <exclusion>
  73. <groupId>commons-el</groupId>
  74. <artifactId>commons-el</artifactId>
  75. </exclusion>
  76. <exclusion>
  77. <groupId>tomcat</groupId>
  78. <artifactId>jasper-runtime</artifactId>
  79. </exclusion>
  80. <exclusion>
  81. <groupId>tomcat</groupId>
  82. <artifactId>jasper-compiler</artifactId>
  83. </exclusion>
  84. <exclusion>
  85. <groupId>org.mortbay.jetty</groupId>
  86. <artifactId>jsp-2.1-jetty</artifactId>
  87. </exclusion>
  88. </exclusions>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.slf4j</groupId>
  92. <artifactId>slf4j-api</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.slf4j</groupId>
  96. <artifactId>slf4j-log4j12</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.apache.hadoop</groupId>
  100. <artifactId>hadoop-annotations</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.mockito</groupId>
  104. <artifactId>mockito-all</artifactId>
  105. <scope>test</scope>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.apache.hadoop</groupId>
  109. <artifactId>hadoop-common</artifactId>
  110. <type>test-jar</type>
  111. <scope>test</scope>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.apache.hadoop</groupId>
  115. <artifactId>hadoop-hdfs</artifactId>
  116. <scope>test</scope>
  117. </dependency>
  118. <dependency>
  119. <groupId>com.google.inject.extensions</groupId>
  120. <artifactId>guice-servlet</artifactId>
  121. </dependency>
  122. <dependency>
  123. <groupId>junit</groupId>
  124. <artifactId>junit</artifactId>
  125. <scope>test</scope>
  126. </dependency>
  127. <dependency>
  128. <groupId>io.netty</groupId>
  129. <artifactId>netty</artifactId>
  130. </dependency>
  131. <dependency>
  132. <groupId>commons-logging</groupId>
  133. <artifactId>commons-logging</artifactId>
  134. <scope>provided</scope>
  135. </dependency>
  136. <dependency>
  137. <groupId>com.google.guava</groupId>
  138. <artifactId>guava</artifactId>
  139. <scope>provided</scope>
  140. </dependency>
  141. <dependency>
  142. <groupId>commons-codec</groupId>
  143. <artifactId>commons-codec</artifactId>
  144. <scope>provided</scope>
  145. </dependency>
  146. <dependency>
  147. <groupId>commons-cli</groupId>
  148. <artifactId>commons-cli</artifactId>
  149. <scope>provided</scope>
  150. </dependency>
  151. <dependency>
  152. <groupId>commons-lang</groupId>
  153. <artifactId>commons-lang</artifactId>
  154. <scope>provided</scope>
  155. </dependency>
  156. <dependency>
  157. <groupId>commons-collections</groupId>
  158. <artifactId>commons-collections</artifactId>
  159. <scope>provided</scope>
  160. </dependency>
  161. <dependency>
  162. <groupId>com.sun.jersey.jersey-test-framework</groupId>
  163. <artifactId>jersey-test-framework-grizzly2</artifactId>
  164. <scope>test</scope>
  165. </dependency>
  166. </dependencies>
  167. <build>
  168. <plugins>
  169. <plugin>
  170. <groupId>org.codehaus.mojo</groupId>
  171. <artifactId>findbugs-maven-plugin</artifactId>
  172. <configuration>
  173. <findbugsXmlOutput>true</findbugsXmlOutput>
  174. <xmlOutput>true</xmlOutput>
  175. <excludeFilterFile>${mr.basedir}/dev-support/findbugs-exclude.xml</excludeFilterFile>
  176. <effort>Max</effort>
  177. </configuration>
  178. </plugin>
  179. <plugin>
  180. <groupId>org.apache.maven.plugins</groupId>
  181. <artifactId>maven-surefire-plugin</artifactId>
  182. <configuration>
  183. <properties>
  184. <property>
  185. <name>listener</name>
  186. <value>org.apache.hadoop.test.TimedOutTestsListener</value>
  187. </property>
  188. </properties>
  189. </configuration>
  190. </plugin>
  191. </plugins>
  192. </build>
  193. <modules>
  194. <module>hadoop-mapreduce-client-core</module>
  195. <module>hadoop-mapreduce-client-common</module>
  196. <module>hadoop-mapreduce-client-shuffle</module>
  197. <module>hadoop-mapreduce-client-app</module>
  198. <module>hadoop-mapreduce-client-jobclient</module>
  199. <module>hadoop-mapreduce-client-hs</module>
  200. <module>hadoop-mapreduce-client-hs-plugins</module>
  201. </modules>
  202. </project>