Created
June 17, 2014 00:28
-
-
Save dharkum/c1f53165abf658464395 to your computer and use it in GitHub Desktop.
This file contains 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>org.openx.data</groupId> | |
<artifactId>json-serde</artifactId> | |
<version>1.1.9.3-SNAPSHOT</version> | |
<packaging>jar</packaging> | |
<name>openx-json-serde</name> | |
<url>https://github.com/rcongiu/Hive-JSON-Serde</url> | |
<scm> | |
<!-- Replace the connection below with your project connection --> | |
<connection>scm:git:git@github.com:rcongiu/Hive-JSON-Serde.git</connection> | |
<developerConnection>scm:git:git@github.com:rcongiu/Hive-JSON-Serde.git</developerConnection> | |
<url>scm:git:git@github.com:rcongiu/Hive-JSON-Serde.git</url> | |
<tag>HEAD</tag> | |
</scm> | |
<properties> | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
<cdh.version>0.13.0.2.1.2.0-402</cdh.version> | |
</properties> | |
<build> | |
<!-- wagon-ssh-external extension is necessary for deploying with scpexe --> | |
<extensions> | |
<extension> | |
<groupId>org.apache.maven.wagon</groupId> | |
<artifactId>wagon-ssh-external</artifactId> | |
<version>2.2</version> | |
</extension> | |
</extensions> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<configuration> | |
<source>1.6</source> | |
<target>1.6</target> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-release-plugin</artifactId> | |
<version>2.4</version> | |
</plugin> | |
<plugin> | |
<groupId>com.atlassian.maven.plugins</groupId> | |
<artifactId>maven-jgitflow-plugin</artifactId> | |
<version>1.0-alpha20</version> | |
<configuration> | |
<allowSnapshots>false</allowSnapshots> | |
<enableFeatureVersions>false</enableFeatureVersions> | |
<pushFeatures>false</pushFeatures> | |
<pushReleases>true</pushReleases> | |
<allowUntracked>true</allowUntracked> | |
<noDeploy>true</noDeploy> | |
</configuration> | |
</plugin> | |
<!-- Assembly Plugin --> | |
<plugin> | |
<artifactId>maven-assembly-plugin</artifactId> | |
<configuration> | |
<descriptorRefs> | |
<descriptorRef>jar-with-dependencies</descriptorRef> | |
</descriptorRefs> | |
<archive> | |
<manifest> | |
</manifest> | |
</archive> | |
</configuration> | |
<executions> | |
<execution> | |
<phase>package</phase> | |
<goals> | |
<goal>single</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
</build> | |
<repositories> | |
<repository> | |
<id>Hortonworks</id> | |
<name>Hortonworks Maven Repo</name> | |
<url>http://repo.hortonworks.com/content/repositories/releases/</url> | |
</repository> | |
</repositories> | |
<dependencies> | |
<dependency> | |
<groupId>junit</groupId> | |
<artifactId>junit</artifactId> | |
<version>4.10</version> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.hive</groupId> | |
<artifactId>hive-serde</artifactId> | |
<version>${cdh.version}</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.hive</groupId> | |
<artifactId>hive-exec</artifactId> | |
<version>${cdh.version}</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.hadoop</groupId> | |
<artifactId>hadoop-core</artifactId> | |
<version>1.2.0.23</version> | |
<scope>provided</scope> | |
</dependency> | |
</dependencies> | |
</project> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment