FancyKing

FancyKing.Hadoop.Maven

Mar 8th, 2020
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.43 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>win.fancyking</groupId>
  8.     <artifactId>hadoopCode</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>6</source>
  17.                     <target>6</target>
  18.                 </configuration>
  19.             </plugin>
  20.         </plugins>
  21.     </build>
  22.  
  23.     <dependencies>
  24.         <!-- https://mvnrepository.com/artifact/junit/junit -->
  25.         <dependency>
  26.             <groupId>junit</groupId>
  27.             <artifactId>junit</artifactId>
  28.             <version>4.12</version>
  29.             <scope>test</scope>
  30.         </dependency>
  31.  
  32.         <!--&lt;!&ndash; https://mvnrepository.com/artifact/commons-logging/commons-logging &ndash;&gt;-->
  33.         <dependency>
  34.             <groupId>commons-logging</groupId>
  35.             <artifactId>commons-logging</artifactId>
  36.             <version>1.2</version>
  37.         </dependency>
  38.  
  39.         <!--&lt;!&ndash; https://mvnrepository.com/artifact/org.apache.hadoop/hadoop-common &ndash;&gt;-->
  40.         <dependency>
  41.             <groupId>org.apache.hadoop</groupId>
  42.             <artifactId>hadoop-common</artifactId>
  43.             <version>3.1.3</version>
  44.         </dependency>
  45.  
  46. <!--        &lt;!&ndash; https://mvnrepository.com/artifact/org.apache.hadoop/hadoop-core &ndash;&gt;-->
  47. <!--        <dependency>-->
  48. <!--            <groupId>org.apache.hadoop</groupId>-->
  49. <!--            <artifactId>hadoop-core</artifactId>-->
  50. <!--            <version>1.2.1</version>-->
  51. <!--        </dependency>-->
  52.  
  53.         <!-- https://mvnrepository.com/artifact/org.apache.hadoop/hadoop-hdfs -->
  54.         <dependency>
  55.             <groupId>org.apache.hadoop</groupId>
  56.             <artifactId>hadoop-hdfs</artifactId>
  57.             <version>3.1.3</version>
  58.         </dependency>
  59.         <dependency>
  60.             <groupId>org.apache.hadoop</groupId>
  61.             <artifactId>hadoop-client</artifactId>
  62.             <version>3.1.3</version>
  63.         </dependency>
  64.  
  65.     </dependencies>
  66.  
  67. </project>
Add Comment
Please, Sign In to add comment