blob: f156bbd83f345c4b6fe40e24a5e3a7c5817debf1 [file] [log] [blame]
vinayakb5ee049d2013-04-06 21:21:29 +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>
vinayakb5ee049d2013-04-06 21:21:29 +000018 <source>1.7</source>
19 <target>1.7</target>
20 <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>
vinayakb5ee049d2013-04-06 21:21:29 +000040 <pluginManagement>
41 <plugins>
42 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
43 <plugin>
44 <groupId>org.eclipse.m2e</groupId>
45 <artifactId>lifecycle-mapping</artifactId>
46 <version>1.0.0</version>
47 <configuration>
48 <lifecycleMappingMetadata>
49 <pluginExecutions>
50 <pluginExecution>
51 <pluginExecutionFilter>
52 <groupId>
53 org.codehaus.mojo
54 </groupId>
55 <artifactId>
56 javacc-maven-plugin
57 </artifactId>
58 <versionRange>
59 [2.6,)
60 </versionRange>
61 <goals>
62 <goal>javacc</goal>
63 </goals>
64 </pluginExecutionFilter>
65 <action>
66 <ignore></ignore>
67 </action>
68 </pluginExecution>
69 </pluginExecutions>
70 </lifecycleMappingMetadata>
71 </configuration>
72 </plugin>
73 </plugins>
74 </pluginManagement>
vinayakb38b7ca42012-03-05 05:44:15 +000075 </build>
76
77 <dependencies>
78 <dependency>
79 <groupId>edu.uci.ics.asterix</groupId>
80 <artifactId>asterix-runtime</artifactId>
81 <version>0.0.4-SNAPSHOT</version>
82 <scope>compile</scope>
83 </dependency>
84 <dependency>
85 <groupId>edu.uci.ics.asterix</groupId>
86 <artifactId>asterix-aql</artifactId>
87 <version>0.0.4-SNAPSHOT</version>
88 <scope>compile</scope>
89 </dependency>
90 <dependency>
91 <groupId>edu.uci.ics.asterix</groupId>
92 <artifactId>asterix-metadata</artifactId>
93 <version>0.0.4-SNAPSHOT</version>
94 <scope>compile</scope>
95 </dependency>
96 <dependency>
97 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +000098 <artifactId>algebricks-compiler</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000099 </dependency>
100 <dependency>
101 <groupId>org.json</groupId>
102 <artifactId>json</artifactId>
103 <version>20090211</version>
104 <type>jar</type>
105 <scope>compile</scope>
106 </dependency>
107 </dependencies>
108</project>