blob: a03bae765e895eed9b5a1e041eccc2ba2c9c1cc4 [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>
buyingyi8a61a182013-03-03 08:41:25 +000020 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000021 </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>
jarodwen1c0fa2a2013-02-03 05:46:59 +000063 <artifactId>algebricks-compiler</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000064 </dependency>
65 <dependency>
66 <groupId>org.json</groupId>
67 <artifactId>json</artifactId>
68 <version>20090211</version>
69 <type>jar</type>
70 <scope>compile</scope>
71 </dependency>
72 </dependencies>
73</project>