blob: c04dd82fa68813a1ff930b3a51cb36459b6394c5 [file] [log] [blame]
buyingyi55df5212013-03-24 07:20:08 +00001<?xml version="1.0"?>
vinayakb1ca34f42013-03-25 03:17:01 +00002<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">
buyingyi55df5212013-03-24 07:20:08 +00003 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <artifactId>hivesterix</artifactId>
6 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb1ca34f42013-03-25 03:17:01 +00007 <version>0.2.3</version>
buyingyi55df5212013-03-24 07:20:08 +00008 </parent>
9
10 <artifactId>hivesterix-optimizer</artifactId>
11 <name>hivesterix-optimizer</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>edu.uci.ics.hyracks</groupId>
32 <artifactId>hivesterix-common</artifactId>
vinayakb1ca34f42013-03-25 03:17:01 +000033 <version>0.2.3</version>
buyingyi55df5212013-03-24 07:20:08 +000034 <type>jar</type>
35 <scope>compile</scope>
36 </dependency>
37 <dependency>
38 <groupId>edu.uci.ics.hyracks</groupId>
39 <artifactId>hivesterix-translator</artifactId>
vinayakb1ca34f42013-03-25 03:17:01 +000040 <version>0.2.3</version>
buyingyi55df5212013-03-24 07:20:08 +000041 <type>jar</type>
42 <scope>compile</scope>
43 </dependency>
44 </dependencies>
45</project>