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