You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
2.3 KiB
88 lines
2.3 KiB
1 year ago
|
<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>com.wankun</groupId>
|
||
|
<artifactId>logcount</artifactId>
|
||
|
<version>1.0</version>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<name>logcount</name>
|
||
|
<url>http://maven.apache.org</url>
|
||
|
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>cloudera</id>
|
||
|
<url>https://repository.cloudera.com/cloudera/cloudera-repos</url>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<spark.version>1.1.0-cdh5.2.0</spark.version>
|
||
|
<hbase.version>0.98.6-cdh5.2.0</hbase.version>
|
||
|
</properties>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>jdk.tools</groupId>
|
||
|
<artifactId>jdk.tools</artifactId>
|
||
|
<version>1.7.0_51</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>${JAVA_HOME}/lib/tools.jar</systemPath>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>ch.qos.logback</groupId>
|
||
|
<artifactId>logback-classic</artifactId>
|
||
|
<version>1.1.2</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.kafka</groupId>
|
||
|
<artifactId>kafka_2.10</artifactId>
|
||
|
<version>0.8.1.1</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.apache.spark</groupId>
|
||
|
<artifactId>spark-streaming_2.10</artifactId>
|
||
|
<version>${spark.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.spark</groupId>
|
||
|
<artifactId>spark-streaming-kafka_2.10</artifactId>
|
||
|
<version>${spark.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.apache.hbase</groupId>
|
||
|
<artifactId>hbase-client</artifactId>
|
||
|
<version>${hbase.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.hbase</groupId>
|
||
|
<artifactId>hbase-server</artifactId>
|
||
|
<version>${hbase.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>4.11</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>3.1</version>
|
||
|
<configuration>
|
||
|
<source>1.6</source>
|
||
|
<target>1.6</target>
|
||
|
<encoding>UTF-8</encoding>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|