blob: 7617582033c52d61750a6a263b20ca8c71a685fb [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-aql</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000010 <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>
zheilbron5e741de2013-02-16 21:34:39 +000017 <source>1.7</source>
18 <target>1.7</target>
vinayakb38b7ca42012-03-05 05:44:15 +000019 </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 <execution>
36 <id>javacc-jjdoc</id>
37 <goals>
38 <goal>jjdoc</goal>
39 </goals>
zheilbron5e741de2013-02-16 21:34:39 +000040 <phase>process-sources</phase>
vinayakb38b7ca42012-03-05 05:44:15 +000041 </execution>
42 </executions>
43 </plugin>
44 </plugins>
vinayakbac7e7ce2012-03-05 06:51:17 +000045 <pluginManagement>
46 <plugins>
zheilbron5e741de2013-02-16 21:34:39 +000047 <!--This plugin's configuration is used to store Eclipse m2e settings
48 only. It has no influence on the Maven build itself. -->
vinayakbac7e7ce2012-03-05 06:51:17 +000049 <plugin>
50 <groupId>org.eclipse.m2e</groupId>
51 <artifactId>lifecycle-mapping</artifactId>
52 <version>1.0.0</version>
53 <configuration>
54 <lifecycleMappingMetadata>
55 <pluginExecutions>
56 <pluginExecution>
57 <pluginExecutionFilter>
58 <groupId>
59 org.codehaus.mojo
60 </groupId>
61 <artifactId>
62 javacc-maven-plugin
63 </artifactId>
64 <versionRange>
65 [2.6,)
66 </versionRange>
67 <goals>
68 <goal>jjdoc</goal>
69 </goals>
70 </pluginExecutionFilter>
71 <action>
72 <ignore></ignore>
73 </action>
74 </pluginExecution>
75 </pluginExecutions>
76 </lifecycleMappingMetadata>
77 </configuration>
78 </plugin>
79 </plugins>
80 </pluginManagement>
vinayakb38b7ca42012-03-05 05:44:15 +000081 </build>
82
83 <dependencies>
84 <dependency>
85 <groupId>edu.uci.ics.asterix</groupId>
86 <artifactId>asterix-common</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-om</artifactId>
93 <version>0.0.4-SNAPSHOT</version>
94 <scope>compile</scope>
95 </dependency>
96 <dependency>
97 <groupId>edu.uci.ics.asterix</groupId>
98 <artifactId>asterix-metadata</artifactId>
99 <version>0.0.4-SNAPSHOT</version>
100 <scope>compile</scope>
101 </dependency>
102 <dependency>
103 <groupId>edu.uci.ics.fuzzyjoin</groupId>
104 <artifactId>fuzzyjoin-core</artifactId>
105 <version>0.0.3</version>
106 <scope>compile</scope>
107 </dependency>
108 </dependencies>
109
110</project>