Advertisement
Guest User

Untitled

a guest
Oct 19th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6.  
  7. <groupId>pokemon</groupId>
  8. <artifactId>pokemon</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10.  
  11. <dependencies>
  12.  
  13. <dependency>
  14. <groupId>org.apache.hadoop</groupId>
  15. <artifactId>hadoop-client</artifactId>
  16. <version>2.6.0</version>
  17. </dependency>
  18.  
  19. <dependency>
  20. <groupId>org.apache.hadoop</groupId>
  21. <artifactId>hadoop-mapreduce-client-core</artifactId>
  22. <version>2.6.0</version>
  23. </dependency>
  24.  
  25. <dependency>
  26. <groupId>org.apache.hadoop</groupId>
  27. <artifactId>hadoop-common</artifactId>
  28. <version>2.6.0</version>
  29. </dependency>
  30.  
  31. <dependency>
  32. <groupId>junit</groupId>
  33. <artifactId>junit</artifactId>
  34. <version>4.11</version>
  35. </dependency>
  36.  
  37. <dependency>
  38. <groupId>org.apache.mrunit</groupId>
  39. <artifactId>mrunit</artifactId>
  40. <version>1.1.0</version>
  41. <classifier>hadoop2</classifier>
  42. </dependency>
  43.  
  44. <dependency>
  45. <groupId>org.apache.poi</groupId>
  46. <artifactId>poi</artifactId>
  47. <version>3.17</version>
  48. </dependency>
  49.  
  50. <dependency>
  51. <groupId>org.apache.poi</groupId>
  52. <artifactId>poi-ooxml</artifactId>
  53. <version>3.9</version>
  54. </dependency>
  55.  
  56.  
  57. </dependencies>
  58. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement