buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame^] | 1 | <?xml version="1.0"?> |
| 2 | <project |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 4 | xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | <artifactId>hivesterix-common</artifactId> |
| 7 | <name>hivesterix-common</name> |
| 8 | |
| 9 | <parent> |
| 10 | <artifactId>hivesterix</artifactId> |
| 11 | <groupId>edu.uci.ics.hyracks</groupId> |
| 12 | <version>0.2.3-SNAPSHOT</version> |
| 13 | </parent> |
| 14 | |
| 15 | <build> |
| 16 | <plugins> |
| 17 | <plugin> |
| 18 | <groupId>org.apache.maven.plugins</groupId> |
| 19 | <artifactId>maven-compiler-plugin</artifactId> |
| 20 | <version>2.0.2</version> |
| 21 | <configuration> |
| 22 | <source>1.7</source> |
| 23 | <target>1.7</target> |
| 24 | <encoding>UTF-8</encoding> |
| 25 | <fork>true</fork> |
| 26 | </configuration> |
| 27 | </plugin> |
| 28 | </plugins> |
| 29 | </build> |
| 30 | |
| 31 | <dependencies> |
| 32 | <dependency> |
| 33 | <groupId>edu.uci.ics.hyracks</groupId> |
| 34 | <artifactId>hyracks-api</artifactId> |
| 35 | <version>0.2.3-SNAPSHOT</version> |
| 36 | <type>jar</type> |
| 37 | <scope>compile</scope> |
| 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>edu.uci.ics.hyracks</groupId> |
| 41 | <artifactId>algebricks-compiler</artifactId> |
| 42 | <version>0.2.3-SNAPSHOT</version> |
| 43 | <type>jar</type> |
| 44 | <scope>compile</scope> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>edu.uci.ics.hyracks</groupId> |
| 48 | <artifactId>hyracks-hdfs-core</artifactId> |
| 49 | <version>0.2.3-SNAPSHOT</version> |
| 50 | <type>jar</type> |
| 51 | <scope>compile</scope> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>org.apache.hadoop.hive</groupId> |
| 55 | <artifactId>hive-exec</artifactId> |
| 56 | <version>0.7.0</version> |
| 57 | <type>jar</type> |
| 58 | <scope>compile</scope> |
| 59 | </dependency> |
| 60 | </dependencies> |
| 61 | </project> |