blob: 4e6032e92ae8689078c9b711b9a0a3e3b63cb554 [file] [log] [blame]
buyingyi55df5212013-03-24 07:20:08 +00001<?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 <parent>
7 <artifactId>hivesterix</artifactId>
8 <groupId>edu.uci.ics.hyracks</groupId>
9 <version>0.2.3-SNAPSHOT</version>
10 </parent>
11
12 <artifactId>hivesterix-optimizer</artifactId>
13 <name>hivesterix-optimizer</name>
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>hivesterix-common</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>hivesterix-translator</artifactId>
42 <version>0.2.3-SNAPSHOT</version>
43 <type>jar</type>
44 <scope>compile</scope>
45 </dependency>
46 </dependencies>
47</project>