pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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.1.0-SNAPSHOT</version>
  22. <relativePath>../../hadoop-project</relativePath>
  23. </parent>
  24. <groupId>org.apache.hadoop</groupId>
  25. <artifactId>hadoop-mapreduce-client</artifactId>
  26. <version>2.1.0-SNAPSHOT</version>
  27. <name>hadoop-mapreduce-client</name>
  28. <packaging>pom</packaging>
  29. <properties>
  30. <!-- Needed for generating FindBugs warnings using parent pom -->
  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>org.jboss.netty</groupId>
  129. <artifactId>netty</artifactId>
  130. </dependency>
  131. </dependencies>
  132. <build>
  133. <plugins>
  134. <plugin>
  135. <groupId>org.codehaus.mojo</groupId>
  136. <artifactId>findbugs-maven-plugin</artifactId>
  137. <configuration>
  138. <findbugsXmlOutput>true</findbugsXmlOutput>
  139. <xmlOutput>true</xmlOutput>
  140. <excludeFilterFile>${mr.basedir}/dev-support/findbugs-exclude.xml</excludeFilterFile>
  141. <effort>Max</effort>
  142. </configuration>
  143. </plugin>
  144. </plugins>
  145. </build>
  146. <modules>
  147. <module>hadoop-mapreduce-client-core</module>
  148. <module>hadoop-mapreduce-client-common</module>
  149. <module>hadoop-mapreduce-client-shuffle</module>
  150. <module>hadoop-mapreduce-client-app</module>
  151. <module>hadoop-mapreduce-client-jobclient</module>
  152. <module>hadoop-mapreduce-client-hs</module>
  153. </modules>
  154. </project>