pom.xml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?xml version="1.0"?>
  2. <project>
  3. <parent>
  4. <artifactId>hadoop-mapreduce-client</artifactId>
  5. <groupId>org.apache.hadoop</groupId>
  6. <version>${hadoop-mapreduce.version}</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <groupId>org.apache.hadoop</groupId>
  10. <artifactId>hadoop-mapreduce-client-hs</artifactId>
  11. <name>hadoop-mapreduce-client-hs</name>
  12. <properties>
  13. <install.file>${project.artifact.file}</install.file>
  14. <mr.basedir>${project.parent.parent.basedir}</mr.basedir>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.apache.hadoop</groupId>
  19. <artifactId>hadoop-mapreduce-client-common</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.apache.hadoop</groupId>
  23. <artifactId>hadoop-mapreduce-client-app</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.apache.hadoop</groupId>
  27. <artifactId>hadoop-mapreduce-client-app</artifactId>
  28. <type>test-jar</type>
  29. <scope>test</scope>
  30. </dependency>
  31. </dependencies>
  32. <build>
  33. <plugins>
  34. <plugin>
  35. <artifactId>maven-surefire-plugin</artifactId>
  36. <configuration>
  37. <excludes>
  38. </excludes>
  39. </configuration>
  40. </plugin>
  41. </plugins>
  42. </build>
  43. </project>