blob: 61fc454fe159627f3dd3b269ac82befd642a6e86 [file] [log] [blame]
vinayakb38b7ca42012-03-05 05:44:15 +00001<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">
2 <modelVersion>4.0.0</modelVersion>
3 <parent>
4 <artifactId>asterix</artifactId>
5 <groupId>edu.uci.ics.asterix</groupId>
6 <version>0.0.4-SNAPSHOT</version>
7 </parent>
8 <groupId>edu.uci.ics.asterix</groupId>
9 <artifactId>asterix-common</artifactId>
10 <version>0.0.4-SNAPSHOT</version>
11 <build>
12 <plugins>
13 <plugin>
14 <groupId>org.apache.maven.plugins</groupId>
15 <artifactId>maven-compiler-plugin</artifactId>
16 <version>2.0.2</version>
17 <configuration>
18 <source>1.6</source>
19 <target>1.6</target>
20 </configuration>
21 </plugin>
22 </plugins>
23 </build>
24
25 <dependencies>
26 <dependency>
27 <groupId>edu.uci.ics.hyracks</groupId>
28 <artifactId>hyracks-algebricks-compiler</artifactId>
29 <version>0.2.0-SNAPSHOT</version>
30 <scope>compile</scope>
31 </dependency>
32 <dependency>
33 <groupId>edu.uci.ics.hyracks</groupId>
34 <artifactId>hyracks-dataflow-common</artifactId>
35 <version>0.2.0-SNAPSHOT</version>
36 <scope>compile</scope>
37 </dependency>
38 <dependency>
39 <groupId>edu.uci.ics.hyracks</groupId>
40 <artifactId>hyracks-dataflow-std</artifactId>
41 <version>0.2.0-SNAPSHOT</version>
42 <scope>compile</scope>
43 </dependency>
44 </dependencies>
45
46</project>
47