blob: b81e77f3df7197152e27a3f6705e7bc8142a21cd [file] [log] [blame]
zheilbron5e741de2013-02-16 21:34:39 +00001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
vinayakb38b7ca42012-03-05 05:44:15 +00003 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <artifactId>asterix</artifactId>
6 <groupId>edu.uci.ics.asterix</groupId>
7 <version>0.0.4-SNAPSHOT</version>
8 </parent>
vinayakb38b7ca42012-03-05 05:44:15 +00009 <artifactId>asterix-algebra</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000010
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>
zheilbron5e741de2013-02-16 21:34:39 +000018 <source>1.7</source>
19 <target>1.7</target>
vinayakb38b7ca42012-03-05 05:44:15 +000020 </configuration>
21 </plugin>
22 <plugin>
23 <groupId>org.codehaus.mojo</groupId>
24 <artifactId>javacc-maven-plugin</artifactId>
25 <version>2.6</version>
26 <executions>
27 <execution>
28 <id>javacc</id>
29 <goals>
30 <goal>javacc</goal>
31 </goals>
32 <configuration>
33 <isStatic>false</isStatic>
34 </configuration>
35 </execution>
36 </executions>
37 </plugin>
38 </plugins>
39 </build>
40
41 <dependencies>
42 <dependency>
43 <groupId>edu.uci.ics.asterix</groupId>
44 <artifactId>asterix-runtime</artifactId>
45 <version>0.0.4-SNAPSHOT</version>
46 <scope>compile</scope>
47 </dependency>
48 <dependency>
49 <groupId>edu.uci.ics.asterix</groupId>
50 <artifactId>asterix-aql</artifactId>
51 <version>0.0.4-SNAPSHOT</version>
52 <scope>compile</scope>
53 </dependency>
54 <dependency>
55 <groupId>edu.uci.ics.asterix</groupId>
56 <artifactId>asterix-metadata</artifactId>
57 <version>0.0.4-SNAPSHOT</version>
58 <scope>compile</scope>
59 </dependency>
60 <dependency>
61 <groupId>edu.uci.ics.hyracks</groupId>
jarodwen1c0fa2a2013-02-03 05:46:59 +000062 <artifactId>algebricks-compiler</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000063 </dependency>
64 <dependency>
65 <groupId>org.json</groupId>
66 <artifactId>json</artifactId>
67 <version>20090211</version>
68 <type>jar</type>
69 <scope>compile</scope>
70 </dependency>
71 </dependencies>
72</project>