Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2017
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.69 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2.  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3.   <modelVersion>4.0.0</modelVersion>
  4.   <groupId>mavenservlet</groupId>
  5.   <artifactId>saurabservlet</artifactId>
  6.   <packaging>war</packaging>
  7.   <version>1.0-SNAPSHOT</version>
  8.   <name>saurabservlet Maven Webapp</name>
  9.   <url>http://maven.apache.org</url>
  10.   <dependencies>
  11.     <dependency>
  12.       <groupId>junit</groupId>
  13.       <artifactId>junit</artifactId>
  14.       <version>3.8.1</version>
  15.       <scope>test</scope>
  16.     </dependency>
  17.     <dependency>
  18.       <groupId>javax.servlet</groupId>
  19.       <artifactId>javax.servlet-api</artifactId>
  20.       <version>3.1.0</version>
  21.       <scope>provided</scope>
  22.     </dependency>
  23.       <dependency>
  24.           <groupId>org.apache.hadoop</groupId>
  25.           <artifactId>hadoop-auth</artifactId>
  26.           <version>2.2.0</version>
  27.       </dependency>
  28.  
  29.       <dependency>
  30.           <groupId>org.apache.hadoop</groupId>
  31.           <artifactId>hadoop-common</artifactId>
  32.           <version>2.8.0</version>
  33.       </dependency>
  34.  
  35.       <dependency>
  36.           <groupId>org.json</groupId>
  37.           <artifactId>json</artifactId>
  38.           <version>20160810</version>
  39.       </dependency>
  40.       <dependency>
  41.           <groupId>org.apache.commons</groupId>
  42.           <artifactId>commons-lang3</artifactId>
  43.           <version>3.0</version>
  44.       </dependency>
  45.       <dependency>
  46.           <groupId>org.apache.httpcomponents</groupId>
  47.           <artifactId>httpclient</artifactId>
  48.           <version>4.5.3</version>
  49.       </dependency>
  50.       <dependency>
  51.           <groupId>org.apache.spark</groupId>
  52.           <artifactId>spark-hive_2.11</artifactId>
  53.           <version>2.1.1</version>
  54.       </dependency>
  55.       <dependency>
  56.           <groupId>org.apache.hive</groupId>
  57.           <artifactId>hive-jdbc</artifactId>
  58.           <version>2.2.0</version>
  59.       </dependency>
  60.       <dependency>
  61.           <groupId>org.scala-lang</groupId>
  62.           <artifactId>scala-library</artifactId>
  63.           <version>2.11.11</version>
  64.       </dependency>
  65.  
  66.   </dependencies>
  67.  
  68.   <build>
  69.     <finalName>saurabservlet</finalName>
  70.     <plugins>
  71.  
  72.       <!-- Config: Maven Tomcat Plugin -->
  73.       <!-- http://mvnrepository.com/artifact/org.apache.tomcat.maven/tomcat7-maven-plugin -->
  74.       <plugin>
  75.         <groupId>org.apache.tomcat.maven</groupId>
  76.         <artifactId>tomcat7-maven-plugin</artifactId>
  77.         <version>2.2</version>
  78.         <!-- Config: contextPath and Port (Default - /SimpleMavenWebApp : 8080) -->
  79.       </plugin>
  80.     </plugins>
  81.   </build>
  82. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement