pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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>
  14. <modelVersion>4.0.0</modelVersion>
  15. <parent>
  16. <groupId>org.apache.hadoop</groupId>
  17. <artifactId>hadoop-project</artifactId>
  18. <version>0.23.3-SNAPSHOT</version>
  19. <relativePath>../../hadoop-project</relativePath>
  20. </parent>
  21. <groupId>org.apache.hadoop</groupId>
  22. <artifactId>hadoop-mapreduce-client</artifactId>
  23. <version>0.23.3-SNAPSHOT</version>
  24. <name>hadoop-mapreduce-client</name>
  25. <packaging>pom</packaging>
  26. <properties>
  27. <!-- Needed for generating FindBugs warnings using parent pom -->
  28. </properties>
  29. <dependencies>
  30. <dependency>
  31. <groupId>com.google.protobuf</groupId>
  32. <artifactId>protobuf-java</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.apache.avro</groupId>
  36. <artifactId>avro</artifactId>
  37. <exclusions>
  38. <exclusion>
  39. <groupId>org.mortbay.jetty</groupId>
  40. <artifactId>jetty</artifactId>
  41. </exclusion>
  42. <exclusion>
  43. <groupId>org.apache.ant</groupId>
  44. <artifactId>ant</artifactId>
  45. </exclusion>
  46. <exclusion>
  47. <groupId>org.jboss.netty</groupId>
  48. <artifactId>netty</artifactId>
  49. </exclusion>
  50. <exclusion>
  51. <groupId>org.apache.velocity</groupId>
  52. <artifactId>velocity</artifactId>
  53. </exclusion>
  54. <exclusion>
  55. <groupId>org.slf4j</groupId>
  56. <artifactId>slf4j-api</artifactId>
  57. </exclusion>
  58. <exclusion>
  59. <artifactId>paranamer-ant</artifactId>
  60. <groupId>com.thoughtworks.paranamer</groupId>
  61. </exclusion>
  62. </exclusions>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.apache.hadoop</groupId>
  66. <artifactId>hadoop-common</artifactId>
  67. <scope>provided</scope>
  68. <exclusions>
  69. <exclusion>
  70. <groupId>commons-el</groupId>
  71. <artifactId>commons-el</artifactId>
  72. </exclusion>
  73. <exclusion>
  74. <groupId>tomcat</groupId>
  75. <artifactId>jasper-runtime</artifactId>
  76. </exclusion>
  77. <exclusion>
  78. <groupId>tomcat</groupId>
  79. <artifactId>jasper-compiler</artifactId>
  80. </exclusion>
  81. <exclusion>
  82. <groupId>org.mortbay.jetty</groupId>
  83. <artifactId>jsp-2.1-jetty</artifactId>
  84. </exclusion>
  85. <exclusion>
  86. <groupId>hsqldb</groupId>
  87. <artifactId>hsqldb</artifactId>
  88. </exclusion>
  89. </exclusions>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.slf4j</groupId>
  93. <artifactId>slf4j-api</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.slf4j</groupId>
  97. <artifactId>slf4j-log4j12</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.apache.hadoop</groupId>
  101. <artifactId>hadoop-annotations</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.mockito</groupId>
  105. <artifactId>mockito-all</artifactId>
  106. <scope>test</scope>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.apache.hadoop</groupId>
  110. <artifactId>hadoop-common</artifactId>
  111. <type>test-jar</type>
  112. <scope>test</scope>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.apache.hadoop</groupId>
  116. <!-- needed for security and runtime -->
  117. <artifactId>hadoop-hdfs</artifactId>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.google.inject.extensions</groupId>
  121. <artifactId>guice-servlet</artifactId>
  122. </dependency>
  123. <dependency>
  124. <groupId>junit</groupId>
  125. <artifactId>junit</artifactId>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.jboss.netty</groupId>
  129. <artifactId>netty</artifactId>
  130. </dependency>
  131. <dependency>
  132. <groupId>com.cenqua.clover</groupId>
  133. <artifactId>clover</artifactId>
  134. </dependency>
  135. </dependencies>
  136. <build>
  137. <plugins>
  138. <plugin>
  139. <groupId>org.codehaus.mojo</groupId>
  140. <artifactId>findbugs-maven-plugin</artifactId>
  141. <configuration>
  142. <findbugsXmlOutput>true</findbugsXmlOutput>
  143. <xmlOutput>true</xmlOutput>
  144. <excludeFilterFile>${mr.basedir}/dev-support/findbugs-exclude.xml</excludeFilterFile>
  145. <effort>Max</effort>
  146. </configuration>
  147. </plugin>
  148. </plugins>
  149. </build>
  150. <modules>
  151. <module>hadoop-mapreduce-client-core</module>
  152. <module>hadoop-mapreduce-client-common</module>
  153. <module>hadoop-mapreduce-client-shuffle</module>
  154. <module>hadoop-mapreduce-client-app</module>
  155. <module>hadoop-mapreduce-client-jobclient</module>
  156. <module>hadoop-mapreduce-client-hs</module>
  157. </modules>
  158. </project>