Advertisement
Guest User

Untitled

a guest
Oct 19th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 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. <build>
  11. <plugins>
  12. <plugin>
  13. <groupId>org.apache.maven.plugins</groupId>
  14. <artifactId>maven-compiler-plugin</artifactId>
  15. <configuration>
  16. <source>1.7</source>
  17. <target>1.7</target>
  18. </configuration>
  19. </plugin>
  20. </plugins>
  21. </build>
  22.  
  23. <dependencies>
  24.  
  25. <dependency>
  26. <groupId>org.apache.hadoop</groupId>
  27. <artifactId>hadoop-client</artifactId>
  28. <version>2.6.0</version>
  29. </dependency>
  30.  
  31. <dependency>
  32. <groupId>org.apache.hadoop</groupId>
  33. <artifactId>hadoop-mapreduce-client-core</artifactId>
  34. <version>2.6.0</version>
  35. </dependency>
  36.  
  37. <dependency>
  38. <groupId>org.apache.hadoop</groupId>
  39. <artifactId>hadoop-common</artifactId>
  40. <version>2.6.0</version>
  41. </dependency>
  42.  
  43. <dependency>
  44. <groupId>junit</groupId>
  45. <artifactId>junit</artifactId>
  46. <version>4.11</version>
  47. </dependency>
  48.  
  49. <dependency>
  50. <groupId>org.apache.mrunit</groupId>
  51. <artifactId>mrunit</artifactId>
  52. <version>1.1.0</version>
  53. <classifier>hadoop2</classifier>
  54. </dependency>
  55.  
  56. <dependency>
  57. <groupId>org.apache.poi</groupId>
  58. <artifactId>poi</artifactId>
  59. <version>3.17</version>
  60. </dependency>
  61.  
  62. <dependency>
  63. <groupId>org.apache.poi</groupId>
  64. <artifactId>poi-ooxml</artifactId>
  65. <version>3.17</version>
  66. </dependency>
  67.  
  68.  
  69. </dependencies>
  70. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement