Created
May 6, 2015 15:56
-
-
Save nicolaferraro/53bf8bdf586602a0f21d to your computer and use it in GitHub Desktop.
Pom Hbase Spark
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>it.eng.spark</groupId> | |
<artifactId>spark-streaming</artifactId> | |
<version>0.0.1-SNAPSHOT</version> | |
<dependencies> | |
<dependency> | |
<groupId>org.apache.spark</groupId> | |
<artifactId>spark-core_2.10</artifactId> | |
<version>1.2.0</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.spark</groupId> | |
<artifactId>spark-streaming_2.10</artifactId> | |
<version>1.2.0</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>it.nerdammer.bigdata</groupId> | |
<artifactId>spark-hbase-connector_2.10</artifactId> | |
<version>0.9.4</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.hbase</groupId> | |
<artifactId>hbase-common</artifactId> | |
<version>0.98.10.1-hadoop2</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.hbase</groupId> | |
<artifactId>hbase-client</artifactId> | |
<version>0.98.10.1-hadoop2</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.hbase</groupId> | |
<artifactId>hbase-server</artifactId> | |
<version>0.98.10.1-hadoop2</version> | |
</dependency> | |
<dependency> | |
<groupId>org.scala-lang</groupId> | |
<artifactId>scala-library</artifactId> | |
<version>2.10.4</version> | |
<scope>provided</scope> | |
</dependency> | |
</dependencies> | |
<build> | |
<plugins> | |
<plugin> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>3.2</version> | |
<configuration> | |
<source>1.7</source> | |
<target>1.7</target> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>org.scala-tools</groupId> | |
<artifactId>maven-scala-plugin</artifactId> | |
<version>2.9.1</version> | |
<executions> | |
<execution> | |
<goals> | |
<goal>compile</goal> | |
<goal>testCompile</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
</build> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment