blob: ac2207cb46fe0ac5ee014ddc89ed4641a1bf59fd [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-algebra</artifactId>
10 <version>0.0.4-SNAPSHOT</version>
11
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.maven.plugins</groupId>
16 <artifactId>maven-compiler-plugin</artifactId>
17 <version>2.0.2</version>
18 <configuration>
19 <source>1.6</source>
20 <target>1.6</target>
21 </configuration>
22 </plugin>
23 <plugin>
24 <groupId>org.codehaus.mojo</groupId>
25 <artifactId>javacc-maven-plugin</artifactId>
26 <version>2.6</version>
27 <executions>
28 <execution>
29 <id>javacc</id>
30 <goals>
31 <goal>javacc</goal>
32 </goals>
33 <configuration>
34 <isStatic>false</isStatic>
35 </configuration>
36 </execution>
37 </executions>
38 </plugin>
39 </plugins>
40 </build>
41
42 <dependencies>
43 <dependency>
44 <groupId>edu.uci.ics.asterix</groupId>
45 <artifactId>asterix-runtime</artifactId>
46 <version>0.0.4-SNAPSHOT</version>
47 <scope>compile</scope>
48 </dependency>
49 <dependency>
50 <groupId>edu.uci.ics.asterix</groupId>
51 <artifactId>asterix-aql</artifactId>
52 <version>0.0.4-SNAPSHOT</version>
53 <scope>compile</scope>
54 </dependency>
55 <dependency>
56 <groupId>edu.uci.ics.asterix</groupId>
57 <artifactId>asterix-metadata</artifactId>
58 <version>0.0.4-SNAPSHOT</version>
59 <scope>compile</scope>
60 </dependency>
61 <dependency>
62 <groupId>edu.uci.ics.hyracks</groupId>
63 <artifactId>hyracks-algebricks-compiler</artifactId>
vinayakbf5ee3b82012-03-23 01:09:46 +000064 <version>0.2.1-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000065 </dependency>
66 <dependency>
67 <groupId>org.json</groupId>
68 <artifactId>json</artifactId>
69 <version>20090211</version>
70 <type>jar</type>
71 <scope>compile</scope>
72 </dependency>
73 </dependencies>
74</project>