buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 1 | <?xml version="1.0"?> |
vinayakb | 1ca34f4 | 2013-03-25 03:17:01 +0000 | [diff] [blame] | 2 | <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"> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <parent> |
| 5 | <artifactId>hivesterix</artifactId> |
| 6 | <groupId>edu.uci.ics.hyracks</groupId> |
Vinayak Borkar | ccfbf41 | 2013-04-25 11:40:50 -0700 | [diff] [blame] | 7 | <version>0.2.6-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 8 | </parent> |
| 9 | |
| 10 | <artifactId>hivesterix-serde</artifactId> |
| 11 | <name>hivesterix-serde</name> |
| 12 | |
| 13 | <build> |
| 14 | <plugins> |
| 15 | <plugin> |
| 16 | <groupId>org.apache.maven.plugins</groupId> |
| 17 | <artifactId>maven-compiler-plugin</artifactId> |
| 18 | <version>2.0.2</version> |
| 19 | <configuration> |
| 20 | <source>1.7</source> |
| 21 | <target>1.7</target> |
| 22 | <encoding>UTF-8</encoding> |
| 23 | <fork>true</fork> |
| 24 | </configuration> |
| 25 | </plugin> |
| 26 | </plugins> |
| 27 | </build> |
| 28 | |
| 29 | <dependencies> |
| 30 | <dependency> |
| 31 | <groupId>org.apache.hadoop.hive</groupId> |
| 32 | <artifactId>hive-serde</artifactId> |
| 33 | <version>0.7.0</version> |
| 34 | <type>jar</type> |
| 35 | <scope>compile</scope> |
| 36 | </dependency> |
| 37 | <dependency> |
| 38 | <groupId>org.apache.hadoop.hive</groupId> |
| 39 | <artifactId>hive-common</artifactId> |
| 40 | <version>0.7.0</version> |
| 41 | <type>jar</type> |
| 42 | <scope>compile</scope> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>edu.uci.ics.hyracks</groupId> |
| 46 | <artifactId>algebricks-compiler</artifactId> |
Vinayak Borkar | ccfbf41 | 2013-04-25 11:40:50 -0700 | [diff] [blame] | 47 | <version>0.2.6-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 48 | <type>jar</type> |
| 49 | <scope>compile</scope> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>edu.uci.ics.hyracks</groupId> |
| 53 | <artifactId>hivesterix-common</artifactId> |
Vinayak Borkar | ccfbf41 | 2013-04-25 11:40:50 -0700 | [diff] [blame] | 54 | <version>0.2.6-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 55 | <type>jar</type> |
| 56 | <scope>compile</scope> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>junit</groupId> |
| 60 | <artifactId>junit</artifactId> |
| 61 | <version>3.8.1</version> |
| 62 | <scope>test</scope> |
| 63 | </dependency> |
| 64 | </dependencies> |
| 65 | </project> |