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